.btn:focus,
.btn:active,
.btn:active:focus,
.textarea:focus,
.custom-select:focus,
.form-control:focus {
  box-shadow: none !important;
  outline: none;
}

body {
  font-family: Arial;
  background-color: #1E2023;
  color: #F5F5F5;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background-color: #374353;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.menu {
  cursor: pointer;
  position: relative;
}

.menu .icon {
  margin-top: 1.3rem;
  margin-right: 0.9rem;
}

.menu .dropdown {
  display: none;
  position: absolute;
  right: 0;
  background-color: #374353;
  box-shadow: 0 8px 16px rgba(0,0,0,0.8);
  border-radius: 10px;
  width: 15rem;
  z-index: 1;
  margin-top: 2rem;
}

.menu .dropdown a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.menu .dropdown a:hover {
  background-color: #575d63;
  border-radius: 10px;
}

.menu:hover .dropdown {
  display: block;
  border-radius: 10px;
}

.profile {
  display: flex;
  align-items: center;
}

.profile img {
  border-radius: 50%;
  width: 45px;
  height: auto;
  margin-right: 10px;
}

.profile .name {
  font-weight: bold;
  font-size: 1.2rem;
}

.profile .status {
  color: #A7B3C2;
}

.chat-container {
  padding: 10px;
  overflow-y: auto;
  flex-grow: 1;
}

.message {
  display: block;
  margin: 15px 0;
  padding: 10px;
  border-radius: 15px;
  max-width: 75%;
  word-wrap: break-word;
}

.message.user {
  background-color: #4A5568;
  color: #FFFFFF;
  margin-left: auto;
  text-align: left;
}

.message.assistant {
  background-color: #6B7280;
  color: #FFFFFF;
  margin-right: auto;
  text-align: left;
}

.input-container {
  display: flex;
  padding: 10px;
  background-color: rgba(55, 67, 83, 0.7);
  position: sticky;
  bottom: 0;
}

.input-container textarea {
  font-family: Arial !important;
  outline: none;
  font-size: 1.2rem;
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  margin-right: 10px;
  resize: none;
  min-height: 40px;
  max-height: 120px;
  overflow-y: auto;
  background-color: #A7B3C2;
}

.input-container button {
  background-color: #A7B3C2;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  cursor: pointer;
  position: relative;
  right: 0;
}

.input-container button i {
  font-size: 1.2rem;
}

@media (min-width: 640px) {
  .message {
    margin: 20px 0;
  }
}