#tb1-topbar {
  height: 1.2em;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.274);
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#tb1-topbar-btn-wrapper {
  display: flex;
  white-space: nowrap;
  margin-right: 2px;
}

#tb1-topbar h2,
#tb1-topbar h1 {
  font-family: mine, Arial, sans-serif;
  font-size: 0.9em;
  position: relative;
}
#tb1-topbar h1{
  margin-left: 4px;
}

#tb1-topbar h2:hover,
h1:hover {
  text-decoration: underline;
  cursor: url('assets/pointer.svg'), pointer;
}

#tb1-topbar img {
  position: relative;
  padding-left: 0.5em;
  height: auto;
  width: clamp(150px, 70%, 500px); 
}



/* -----------------------------------bot-------------------------------------- */
#chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 88%;
  max-width: 320px;
  height: 25em;
  background-color: #C3C3C3;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  font-family: 'VT323', monospace;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

#chat-header {
  background-image: linear-gradient(to bottom, rgba(77, 74, 74, 0.233), #ffffff);
  padding: 0.4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bolder;
  cursor: url('assets/cursor.svg'), default !important;
}

#chat-header button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #000;
  color: #000;
  width: 1em;
  cursor: url('assets/pointer.svg'), pointer;
}

#chat-header button:hover {
  background: red;
}

#chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: #fff;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

#chat-input {
  display: flex;
  padding: 10px;
}

#user-input {
  flex-grow: 1;
  font-family: 'VT323', monospace;
  font-size: 1em;
  border: 1px solid #000;
  cursor: text;
}

#send-btn {
  font-family: 'VT323', monospace;
  font-size: 1em;
  background-color: #3f3f3f;
  color: #fff;
  border: 1px solid #000;
  cursor: url('assets/pointer.svg'), pointer;
}