.logo-part1 {
  color: #fff;
  font-weight: bold;
}

.logo-part2 {
  color: #82E0AA;
  font-weight: bold;
}

.logo-part1, .logo-part2 {
  font-family: 'Your Google Font Name', sans-serif;
  font-size: 24px;
  margin-bottom: 0; /* Adjust or remove bottom margin */
  padding-bottom: 0; /* Adjust or remove bottom padding */
  display: inline-block; /* Make sure it does not take full-width space */
}

.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #333;
  width: 100%;
  color: white;
  padding: 1px 0; /* Reduced padding for less vertical space */
  margin: 0;
  margin-bottom: 0; /* Reduce space below the navbar */
}

.menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
  padding: 1px 0; /* Reduced padding for less vertical space */
  margin: 0;
}

/* Dropdown button */
.dropbtn {
  background-color: #333;
  color: white;
  padding: 4px; /* Reduced padding to make it more compact */
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn .fa-bars {
  margin-left: 10px;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

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

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .navbar {
    text-align: center;
  }

  .menu-wrapper {
    width: 100%;
  }

  .dropbtn {
    width: 100%;
  }

  .dropdown-content {
    width: 100%;
    left: 0;
  }
}

/* Chat header NOT used in chat "ask a question" header*/
.chatheader-input-area {
  background-color: #333;
  display: flex;
  align-items: center; /* Vertically centers the input and button */
  justify-content: center; /* Centers content if needed */
  padding-bottom: 6px; /* Ensures background color covers the added space */
}

#ChatHeaderInput {
  width: 250px; /* Or 300px as desired */
  height: 20px; /* Adjust height as needed */
  padding: 5px;
  margin-right: 5px; /* Space between input and button */
  border: 1px solid #ccc; /* Add border if needed */
  border-radius: 4px; /* Slight rounding of corners */
  font-size: 12px; /* Adjust font size if needed */
}

#sendBtn {
  padding: 0 10px; /* Only horizontal padding, minimal vertical padding */
  height: auto; /* Let the content dictate height */
  background-color: #82E0AA; /* Example background color */
  color: black; /* Button text color */
  border: none;
  border-radius: 4px; /* Match input border-radius */
  cursor: pointer;
  font-size: 12px; /* Match font size to input if desired */
  line-height: 20px; /* Ensures text is vertically centered */
}

#sendBtn:hover {
  background-color: #0056b3; /* Darker blue for hover effect */
}
