@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}
/* Header styles */
.header {
  height: 80px;
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
  padding: 0 24px;
  color: #fff;
}

.logo {
  height: 45px;
}

.trustpilot {
  color: #fff;
  font-size: 14px;
}

.trustpilot-stars {
  color: gold;
}

.header-icons .bi {
  font-size: 24px;
  color: #fff;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Layout container */
.layout-container {
  display: flex;
  min-height: calc(100vh - 80px);
  max-width: 100%;
  overflow-x: hidden;
}

/* Left Sidebar styles */
.sidebar {
  width: 306px;
  height: 943px;
  flex-shrink: 0;
  background-color: #fff;
  padding: 24px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #8b8d97;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.menu-item:hover {
  background-color: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
}

.menu-item.active {
  background-color: #0c75c2;
  color: #fff;
}

.menu-item i {
  margin-right: 12px;
  font-size: 20px;
}

.upgrade-box {
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-top: 32px;
}

.upgrade-button {
  background: #fff;
  color: #0c75c2;
  border: none;
  border-radius: 24px;
  padding: 8px 24px;
  font-weight: 500;
  margin-top: 16px;
  cursor: pointer;
}

/* Main content styles */
.main-content {
  flex: 1;
  padding: 24px;
  background-color: #f9f9f9;
  min-width: 0;
  padding: 20px 30px;
}

.heading-text{
    color: #0B6FC0;
    font-weight: 500;
    font-size: 25px;
    line-height: 37px;
}
.user-info h6 {
  font-size: 14px;
  font-weight: 300;
}

.add-new button{
    padding: 6px 19px;
    color: #0B6FC0;
    border: 1px solid #0B6FC0;
    border-radius: 20px;
}

.add-new button:hover{
    background: linear-gradient(to right, #0b6fc0, #0ae0fc);
        color: white;
    border: 1px solid transparent;
}

.user-info .username {
  color: #0c74c2 !important;
  font-size: 18px;
  font-weight: 600;
}

.symptom-card {
    padding: 15px 20px;
    border-radius: 10px;
    background-color: #fff;
}

.symptom-card  span{
    color: #666666;
    font-weight: 200 !important;
}

.symptom-card p {
    font-size: 14px;
}

.symptom-card-btns button{
    color: #0B6FC0;
    background: white !important;
}

.symptom-card-btns button:hover{
    font-weight: 600;
}

.delete-symptom-info h3{
    font-size: 20px;
    font-weight: 800;
    color: #FF485D;
}
.delete-symptom-info h4{
    font-size: 14px;
    font-weight: 300;
    color: #2E2E2E;
}
.delete-symptom-info h5{
    font-size: 14px;
    font-weight: 700;
    color: #0C74C2;
}

.popup {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10000;
}

.delete-box {
  width: 572px;
  padding: 20px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
}

.delete-btn{
    padding: 6px 34px;
    color: #FF485D;
    border: 1px solid #FF485D;
    border-radius: 20px;
}

.delete-btn:hover{
    background: linear-gradient(to right, #0b6fc0, #0ae0fc);
        color: white;
    border: 1px solid transparent;
}
.cancel-btn{
    padding: 6px 34px;
    color: #0959a3;
    border: 1px solid #0959a3;
    border-radius: 20px;
}

.cancel-btn:hover{
    background: linear-gradient(to right, #0b6fc0, #0ae0fc);
        color: white;
    border: 1px solid transparent;
  }

.popup-btn{
    padding: 6px 28px;
    color: #0959a3;
    border: 1px solid #0959a3;
    border-radius: 20px;
}

.popup-btn:hover{
    background: linear-gradient(to right, #0b6fc0, #0ae0fc);
        color: white;
    border: 1px solid transparent;
  }

  .symptoms-report {
    font-weight: 800;
    color: #0B6FC0;
  }
  
  .history-box {
    width: 620px;
    padding: 20px 30px;
  }

  .email-box {
    width: 520px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .email-box h4 {
    color: #0C74C2;
  }
  .email-box input {
    width: 340px;
    padding: 8px 15px;
    margin-top: 10px;
    border: 2px solid #1f9eff;
    outline: none ;
    border-radius: 10px;
  }
/* Header Styles */
.header {
  height: 108px;
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
  padding: 0 32px;
  justify-content: flex-start;
  color: #fff;
}

.header > div:last-child {
  margin-left: auto;
}

.history-info-card{
  background: #EBEFFA;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between !important;
}

.history-info-card h6 {
  color: #666666;
  font-weight: 300;
  font-size: 14px;
}
.history-info-card span {
  color: #666666;
  font-weight: 300;
  font-size: 14px;
  margin-right: auto;
}

.logo-container {
  display: flex;
  align-items: center;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
  width: 116px;
  height: 90.925px;
  flex-shrink: 0;
}

.trustpilot {
  width: 120px;
}

/* Header Navigation */
.nav-center {
  margin-left: 40px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 0 24px;
  border-radius: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s;
}

.nav-link:last-child {
  border-right: none;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Header Icons and User */
.header-icons .bi {
  font-size: 24px;
  color: #fff;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4444;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dropdown Styles */
.dropdown-menu {
  transform: translateY(10px);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: #2e2e2e;
  font-size: 14px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #0c75c2;
}

.dropdown-item i {
  opacity: 0.7;
}

.dropdown-header {
  padding-bottom: 16px;
}

/* Header Styles */
.header {
  height: 108px;
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
  padding: 0 32px;
  justify-content: flex-start;
  color: #fff;
}

.header > div:last-child {
  margin-left: auto;
}

.logo-container {
  display: flex;
  align-items: center;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
  width: 116px;
  height: 90.925px;
  flex-shrink: 0;
}

.trustpilot {
  width: 120px;
}

/* Header Navigation */
.nav-center {
  margin-left: 40px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 0 24px;
  border-radius: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s;
}

.nav-link:last-child {
  border-right: none;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Header Icons and User */
.header-icons .bi {
  font-size: 24px;
  color: #fff;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4444;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dropdown Styles */
.dropdown-menu {
  transform: translateY(10px);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: #2e2e2e;
  font-size: 14px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #0c75c2;
}

.dropdown-item i {
  opacity: 0.7;
}

.dropdown-header {
  padding-bottom: 16px;
}

.right-sidebar {
  width: 168px;
  background-color: #fff;
  padding: 16px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* Ad Container */
.ad-container {
  width: 168px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.ad-container img {
  width: 168px;
  height: 168px;
  object-fit: cover;
}

/* Stats Container */
.stats-container {
  background-color: #f5f5f5;
  padding: 8px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #666;
  font-size: 12px;
}

.stat-item i {
  font-size: 14px;
}
.log-out-btn:hover {
  background-color: #0959a3;
}

.log-out-btn i {
  font-size: 20px;
}
.log-out-btn {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 24px;
  background-color: #0c75c2;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.header {
  height: 108px;
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
  padding: 0 32px;
  justify-content: flex-start;
  color: #fff;
}

.header > div:last-child {
  margin-left: auto;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
  width: 116px;
  height: 90.925px;
  flex-shrink: 0;
}

.trustpilot {
  width: 120px;
}

/* Navigation Styles */
.nav-center {
  margin-left: 40px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 0 24px;
  border-radius: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s;
}

.nav-link:last-child {
  border-right: none;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* User Elements */
.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4444;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  background: white;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: #2e2e2e;
  transition: background-color 0.3s;
}

.dropdown-item:hover {
  background-color: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
}

/* Mobile Menu Styles */
#mobileMenu {
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
}

#mobileMenu a {
  color: white;
}

.mobile-nav-link {
  color: #8b8d97;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.mobile-nav-link:hover {
  background-color: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
}

/* Mobile User Menu Styles */
.mobile-user-profile {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-item {
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s;
}

.mobile-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-item i {
  font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .header {
    height: 70px;
    padding: 0 16px;
  }

  .logo {
    width: 80px;
    height: auto;
  }

  .logo-container {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .nav-center {
    margin-left: auto;
    margin-right: auto;
  }
}
.sidebar {
  width: 306px;
  height: 943px;
  flex-shrink: 0;
  background-color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1050;
  transition: all 0.3s ease;
}

.sidebar.collapsed {
  width: 80px;
}

.sidebar-toggle {
  position: absolute;
  right: -12px;
  top: 20px;
  width: 24px;
  height: 24px;
  background: #2d2d2d;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1051;
  transition: transform 0.3s;
}

.sidebar.collapsed .sidebar-toggle {
  transform: rotate(180deg);
}

/* Menu Items */
.menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #8b8d97;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.menu-item:hover {
  background-color: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
  padding-right: 30px;
}

.menu-item.active {
  background-color: #0c75c2;
  color: #fff;
  padding-right: 30px;
}

.menu-item i {
  margin-right: 12px;
  font-size: 20px;
}

/* Sidebar Icons */
.sidebar-icon {
  width: 30px !important;
  height: 30px !important;
  margin-right: 12px;
  flex-shrink: 0;
}

.menu-text {
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.2s;
}

.sidebar.collapsed .menu-text {
  opacity: 0;
  width: 0;
  margin: 0;
}

/* Dropdown Menu */
.menu-item-dropdown {
  background: #fff;
  color: #8b8d97;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.menu-item-dropdown:hover {
  background: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
}

.menu-item-dropdown.active {
  background: #0c75c2;
  color: #fff;
}

.menu-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.arrow {
  transition: transform 0.3s;
}

.menu-item-dropdown.active .arrow {
  transform: rotate(90deg);
}

.dropdown-content {
  padding-left: 48px;
  margin-bottom: 16px;
  display: none;
}

.dropdown-content.show {
  display: block;
}

.dropdown-item-custom {
  color: #8b8d97;
  padding: 8px 0;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}

.dropdown-item-custom:hover {
  color: #0c75c2;
}

/* Upgrade Box */
.upgrade-box {
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-top: 32px;
  transition: opacity 0.3s;
}

.sidebar.collapsed .upgrade-box {
  display: none;
}

.upgrade-button {
  background: #fff;
  color: #0c75c2;
  border: none;
  border-radius: 24px;
  padding: 8px 24px;
  font-weight: 500;
  margin-top: 16px;
  cursor: pointer;
}

/* Logout Button */
.log-out-btn {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 24px;
  background-color: #0c75c2;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.log-out-btn:hover {
  background-color: #0959a3;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

.sidebar-overlay.active {
  display: block;
}

/* Collapsed Dropdown Behavior */
.sidebar.collapsed .dropdown-content {
  position: absolute;
  left: 100%;
  top: 0;
  width: 200px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 8px;
  border-radius: 8px;
  display: none;
}

.sidebar.collapsed .menu-item-dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile Sidebar */
@media (max-width: 991px) {
  .sidebar {
    position: fixed;
    left: -306px;
    height: 100vh;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 1050;
  }

  .sidebar.mobile-active {
    left: 0;
  }

  .sidebar-toggle {
    display: none;
  }

  .sidebar-overlay {
    display: none;
  }

  .sidebar-overlay.active {
    display: block;
  }
}
/* Sidebar Toggle Button */
.sidebar-toggle {
  position: absolute;
  right: -12px;
  top: 20px;
  width: 24px;
  height: 24px;
  background: #2d2d2d;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1051;
  transition: transform 0.3s ease;
}

.sidebar.collapsed .sidebar-toggle {
  transform: rotate(180deg); /* Rotate the toggle when sidebar is collapsed */
}

/* Sidebar Collapsed */
.sidebar {
  width: 306px;
  background: #fff;
  transition: all 0.3s ease; /* Smooth transition for collapsing */
  padding: 24px;
  position: relative;
  z-index: 1050;
}

.sidebar.collapsed {
  width: 80px; /* Reduced width for collapsed state */
}

.sidebar.collapsed .menu-text {
  opacity: 0; /* Hide text for collapsed state */
  width: 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden; /* Prevent text overflow */
}

/* Collapsed Dropdown Behavior */
.sidebar.collapsed .dropdown-content {
  position: absolute;
  left: 100%; /* Dropdown appears to the right of the collapsed sidebar */
  top: 0;
  width: 200px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 8px;
  border-radius: 8px;
  display: none;
}

.sidebar.collapsed .menu-item-dropdown:hover .dropdown-content {
  display: block; /* Show dropdown content on hover */
}

/* Sidebar Overlay (for mobile) */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dimmed background */
  z-index: 1040;
}

.sidebar-overlay.active {
  display: block;
}

/* Mobile Sidebar Behavior */
@media (max-width: 991px) {
  .sidebar {
    position: fixed;
    left: -306px; /* Start off-screen */
    height: 100vh;
    transition: left 0.3s ease; /* Smooth transition */
    z-index: 1050;
    top: 70px; /* Adjust for header height */
  }

  .sidebar.mobile-active {
    left: 0; /* Slide-in when active */
  }

  .sidebar.mobile-active + .mobile-toggle-btn {
    left: 306px; /* Adjust mobile toggle position */
  }

  .sidebar-toggle {
    display: none; /* Hidden toggle for mobile */
  }
}

/* Mobile Toggle Button */
.mobile-toggle-btn {
  position: fixed;
  left: 0;
  top: 120px; /* Adjust based on your header height */
  width: 24px;
  height: 24px;
  background: #2d2d2d;
  border: none;
  border-radius: 0 4px 4px 0;
  color: #fff;
  display: none; /* Hidden by default on desktop */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1060;
  transition: left 0.3s ease;
}

.mobile-toggle-btn i {
  font-size: 14px;
}

/* Show the mobile toggle button for smaller screens */
@media (max-width: 991px) {
  .mobile-toggle-btn {
    display: flex;
  }
}

/* Preserve desktop layout above 991px */
@media (max-width: 991px) {
  .layout-container {
    flex-wrap: wrap;
  }

  .main-content {
    flex: 1 1 100%;
    padding: 16px;
  }

  .right-sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 16px;
    gap: 16px;
  }

  .ad-container {
    width: calc(33.33% - 16px);
    margin-bottom: 0;
  }

  /* Header adjustments */
  h2 {
    font-size: 22px;
  }

  /* Chatbot options adjustments */
  .chatbot-options {
    flex-wrap: wrap;
    gap: 12px;
  }

  .chatbot-options > div {
    flex: 1 1 calc(50% - 12px);
    min-width: 150px;
  }

  .chatbot-options .active-indicator {
    display: none;
  }

  /* Chat container adjustments */
  .chat-container {
    margin-top: 16px;
  }

  .chat-message {
    gap: 8px;
  }

  .message-content {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .ad-container {
    width: calc(50% - 16px);
  }

  /* Welcome box adjustments */
  .welcome-box {
    padding: 20px;
    font-size: 14px;
  }

  .chatbot-options {
    margin: 20px 0;
  }
.delete-box {
    width: 400px;
    padding: 20px;
}
  .chatbot-options > div {
    padding: 12px;
  }

  .option-content {
    font-size: 14px;
  }

  /* Chat interface adjustments */
  .chat-container {
    padding: 20px;
  }

  .history-box {
    width: 450px;
    padding: 20px 30px;
  }
  .chat-input {
    padding: 10px;
  }

  .chat-input input {
    font-size: 14px;
  }

  /* Header responsive fixes */
  .d-flex.justify-content-between.align-items-center {
    flex-wrap: wrap;
    gap: 16px;
  }

  .symptom-viewer-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .main-content {
    padding: 12px;
  }

  .ad-container {
    width: 100%;
  }
.delete-box {
    width: 450px;
    padding: 20px;
}
  .chatbot-options {
    gap: 8px;
  }
    .history-box {
        width: 400px;
        padding: 20px 25px;
    }

    .history-box button{
      font-size: 14px;
      padding: ;
    }

  .chatbot-options > div {
    flex: 1 1 100%;
    padding: 10px;
  }

  .welcome-box {
    padding: 16px;
    margin-bottom: 16px;
  }

  .info-box {
    padding: 12px;
    font-size: 13px;
  }

  .chat-container {
    padding: 16px;
  }

  .message-content {
    font-size: 13px;
    padding: 10px 12px;
  }

  .bot-icon {
    width: 32px;
    height: 32px;
  }
}

/* Chatbot interactions */
@media (max-width: 991px) {
  .chat-input {
    margin-top: 16px;
  }

  .send-btn {
    width: 36px;
    height: 36px;
  }

  .chat-input input {
    height: 36px;
  }
}

/* Ensure proper spacing */
.chatbot-options > div {
  transition: all 0.3s ease;
}

.chatbot-options > div:hover {
  transform: translateY(-2px);
}

/* Better touch targets */
@media (max-width: 991px) {
  .symptom-viewer-btn,
  .send-btn {
    min-height: 44px;
  }

  .understand-check label {
    padding: 8px 0;
  }
}
@media (max-width: 400px) {
  .history-box {
    width: 350px;
    padding: 20px 30px;
  }
  .delete-box {
    width: 350px;
    padding: 20px;
}
    .history-box {
        width: 350px;
        padding: 20px 15px;
    }
}
@media (max-width: 350px) {
  .delete-box {
    width: 300px;
    padding: 20px;
}
}

    .popup {
        height: 100vh;
        width: 100%;
        padding: 0 2%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        z-index: 10000;
    }

    .paired-box {
        max-width: 572px;
        width: 100%;
        padding: 40px 30px;
    }

    .paired-box h5 {
        font-size: 25px;
        color: #ed4c5c;
        font-weight: 500;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .popup-btn {
        padding: 6px 34px;
        color: #0959a3;
        border: 1px solid #0959a3;
        border-radius: 20px;
        background: transparent;
        transition: all 0.3s ease;
    }

    .popup-btn:hover {
        background: linear-gradient(to right, #0b6fc0, #0ae0fc);
        color: white;
        border: 1px solid white;
    }

    .m-remote-care-dropdown {
        background: white;
        width: 100%;
        margin-top: 10px;
        padding: 10px 0px;
        border-radius: 10px;
    }

    .m-remote-care-dropdown li {
        padding: 5px 10px;
        border-radius: 5px;
        margin-top: 5px;
        list-style: none;
        color: black !important;
    }

    .m-remote-care-dropdown li:hover {
        background: #ececec;
    }

    .sidebar-icon {
        width: 37px !important;
        height: 30px !important;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .sidebar.collapsed {
        width: 100px !important;
    }

    .menu-item {
        padding: 13px !important;
    }

    .menu-item-dropdown {
        padding: 13px !important;
    }

    .upgrade-box {
        display: flex;
        flex-direction: column;
        margin-top: 30px !important;
        margin-bottom: 18px !important;
    }

    .upgrade-box .upgrade-text {
        font-size: 16px;
    }

    .profile-box {
        max-width: 622px;
        width: 100%;
        padding: 40px 30px;
    }

    .profile-box h5 {
        font-size: 25px;
        color: #0C74C2;
        font-weight: 500;
    }

    .profile-box .profile-link h6 {
        color: #555555;
    }

    .sidebar-icon {
        width: 35px !important;
    }

 .delete-symptom-info{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  background: #f9f9f9b4;
  backdrop-filter: blur(3px);
}

.delete-symptom-card {
    padding: 15px 20px;
    border-radius: 10px;
    background-color: #fff;
}

