@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;
}

/* 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;

  min-width: 0;
  padding: 24px;
  background-color: #f5f6fa;
}

.main-content > p {
  color: #2e2e2e;
  font-family: "Work Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.banner-image {
  width: 100%;

  object-fit: cover;

  height: 252px;
  flex-shrink: 0;
}

.content-heading {
  color: #0c75c2;
  font-size: 24px;
  font-weight: 600;
  margin: 24px 0 16px;
}

.read-more {
  color: #2aafe8;
  font-family: "Work Sans";
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.feature-card {
  background-color: #e0f1ff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  height: 100%;
}

.feature-icon {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
a {
  text-decoration: none;
}

.feature-icon i {
  font-size: 32px;
  color: #0c75c2;
}

/* Right sidebar styles */
.right-sidebar {
  width: 168px;
  background-color: #fff;
  padding: 16px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.ad-box {
  width: 168px;
  height: 168px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-box img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: 8px;
}

.vertical-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 24px;
}

/* .sidebar-icon {
    padding-right: 10px;
} */
.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;
}

/*Left Side Bar DropDowns */
.menu-item-dropdown {
  background: #0c75c2;
  color: white;
  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:not(.active) {
  background: white;
  color: #8b8d97;
}

.menu-item-dropdown:hover:not(.active) {
  background-color: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
}

.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;
}

.menu-item-dropdown .arrow {
  transition: transform 0.3s;
}

.menu-item-dropdown.active .arrow {
  transform: rotate(180deg);
}

.menu-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-content {
  background-color: #f5f6fa;
  padding: 24px;
}

.dashboard-title {
  color: #2e2e2e;
  font-size: 24px;
  font-weight: 600;
}

.stats-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.chart-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.list-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.chart-container {
  height: 300px;
  position: relative;
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.list-item:hover {
  background-color: #f5f6fa;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon {
  border: none;
  background: none;
  padding: 6px;
  color: #6b7280;
}

.btn-icon:hover {
  color: #0c75c2;
}

.card-title {
  color: #2e2e2e;
  font-weight: 600;
}
.trustpilot-wrapper {
  color: #fff;
}

.trustpilot-header {
  margin-bottom: 2px;
}

.review-text {
  font-size: 12px;
  color: #fff;
  opacity: 0.9;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.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;
}

.header {
  padding: 0 32px;
}

.add-new-btn {
  padding: 8px 16px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #0c75c2;
  font-weight: 500;
}

.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.appointment-card {
  background: #f0f9ff;
  border-radius: 12px;
  padding: 16px;
}

.appointment-date {
  min-width: 150px;
}

.time {
  color: #6b7280;
  font-size: 14px;
  margin-top: 4px;
}

.doctor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.doctor-name {
  font-weight: 500;
}

.appointment-type {
  color: #6b7280;
  font-size: 14px;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
}

.status-badge.open {
  background: white;
  color: #6b7280;
}

.status-badge.not-attended {
  background: #fee2e2;
  color: #dc2626;
}

.status-badge.rebooked {
  background: #fef3c7;
  color: #d97706;
}

.status-badge.attended {
  background: #d1fae5;
  color: #059669;
}

.status-badge.cancelled {
  background: #e0f2fe;
  color: #0284c7;
}

.content-wrapper {
  background: white;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
}

.page-title {
  color: #2e2e2e;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.add-new {
  padding: 8px 16px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #0c75c2;
  font-weight: 500;
  cursor: pointer;
}

.medications-table {
  width: 800px !important;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.medications-table th {
  color: #6b7280;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.medications-table td {
  padding: 16px;
  background: #ffffff;
  margin-bottom: 8px;
  color: #2e2e2e;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
}

.medications-table tr td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  font-weight: 500;
}

.medications-table tr td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* .status-badge {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
} */

.status-badge.active {
  background: #eff6ff;
  color: #0c75c2;
}

.status-badge.completed {
  background: #d1fae5;
  color: #059669;
}

.main-content {
  background: #f5f6fa;
  padding: 24px;
  flex: 1;
  min-height: calc(100vh - 80px);
}

/* 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;
  }
}
.custom-input {
  background-color: #ebf5ff !important;
  border: none !important;
  padding: 0.75rem !important;
  border-radius: 8px !important;
}

.custom-input:focus {
  box-shadow: 0 0 0 2px #0c75c2 !important;
}

.modal-content {
  border: none;
  border-radius: 16px;
}
.modal-heading {
  text-align: center;
  font-size: 24px;
  color: #0c75c2;
}

.form-label {
  color: #2e2e2e;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 500;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #0959a3 0%, #1ab3c7 100%);
}

/* Main Layout Container */
.layout-container {
  display: flex;
  min-height: calc(100vh - 80px);
  max-width: 100%;
  overflow-x: hidden;
}

/* Main Content Area */
.main-content {
  flex: 1;
  padding: 24px;
  min-width: 0; /* Prevents flex child from overflowing */
  background-color: #f5f6fa;
}

.content-wrapper {
  width: 100% !important;
  background: white;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  overflow-x: auto; /* Allows table to scroll horizontally on small screens */
}

/* Responsive Table Styles */
.medications-table {
  width: 800px !important;
  min-width: 800px; /* Ensures table content doesn't get too squeezed */
  border-collapse: separate;
  border-spacing: 0 8px;
}

.medications-table th {
  color: #6b7280;
  font-weight: 600 !important;
  font-size: 17px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
  color: var(--Font, #2e2e2e);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.14px;
}

/* .medications-table td {
    padding: 16px;
    background: #15202b;
    color: #2E2E2E;
} */

/* Right Sidebar Responsive Styles */
.right-sidebar {
  width: 168px;
  background-color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* Ad Container Responsive Styles */
.ad-container {
  width: 100%;
  max-width: 168px;
  margin-bottom: 16px;
}

.ad-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Page Header Responsive Styles */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.page-title {
  color: var(--Font, #2e2e2e);

  /* h2 */
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.btn-preview:hover {
  cursor: pointer;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .right-sidebar {
    width: 140px; /* Slightly smaller on medium screens */
  }

  .ad-container {
    max-width: 140px;
  }
}

@media (max-width: 991px) {
  .layout-container {
    flex-direction: column; /* Stack everything vertically */
  }

  .right-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 24px;
  }

  .ad-container {
    max-width: 168px; /* Return to original size but in a row */
    margin: 0 8px 16px;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 16px;
    border-radius: 12px;
  }

  .page-header {
    /* flex-direction: column; */
    align-items: flex-start;
  }

  .main-content {
    padding: 16px;
  }
}

/* Status Badge Responsive Styles */
.status-badge {
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
}

.status-badge.red-active {
  background: var(--container-fill, #ff9999);
  color: #c20c0c;
}

.status-badge.active {
  background: var(--container-fill, #ddf2f9);
  color: #0c75c2;
}

.status-badge.completed {
  color: #008767;
  background: #a0e3d8;
}

/* Add New Button Responsive Styles */
.add-new {
  display: flex;
  width: 129px;
  height: 37px;
  padding: 9px 23px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid #0b6fc0;
  color: #0b6fc0;

  /* H3 */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Modal Responsive Styles */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem;
  }

  .modal-content {
    padding: 16px;
  }

  .row {
    margin: 0 -8px;
  }

  .col-md-6 {
    padding: 0 8px;
  }
}

.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;
  }
}

/* Table responsive wrapper */
@media (max-width: 991px) {
  .layout-container {
    flex-wrap: wrap;
  }

  .main-content {
    flex: 1 1 100%;
    padding: 16px;
  }

  .content-wrapper {
    padding: 16px;
  }

  .medications-table {
    display: block;
    width: 800px !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .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;
  }

  .modal-dialog {
    margin: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    /* flex-direction: column; */
    gap: 16px;
    align-items: flex-start;
  }

  .add-new {
    width: auto !important;
    padding: 4px 20px !important;
    height: auto !important;
  }

  .page-title{
    margin: 0 !important;
  }

  .ad-container {
    width: calc(50% - 16px);
  }

  /* Make table scrollable horizontally */
  .medications-table {
    font-size: 14px;
  }

  .medications-table th,
  .medications-table td {
    padding: 12px 8px;
    white-space: nowrap;
  }

  .status-badge {
    padding: 4px 8px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .content-wrapper {
    padding: 12px;
    border-radius: 12px;
  }

  .page-title {
    font-size: 20px;
  }

  .ad-container {
    width: 100%;
  }

  .medications-table th,
  .medications-table td {
    padding: 8px 6px;
  }

  /* Modal responsive styles */
  .modal-body {
    padding: 16px;
  }

  .modal-heading {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .form-label {
    font-size: 14px;
  }

  .custom-input {
    font-size: 14px;
    padding: 8px 12px;
  }

  .btn-primary {
    padding: 8px 16px;
  }
}

/* Apply styles to table container for better mobile experience */
.content-wrapper {
  overflow: hidden;
}

.medications-table thead th {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}

/* Ensure modal stays on top */
.modal {
  z-index: 1060;
}

/* Make form inputs more touch-friendly on mobile */
@media (max-width: 991px) {
  .custom-input {
    height: 44px;
  }

  .form-control {
    font-size: 16px; /* Prevent auto-zoom on iOS */
  }
}

.monitor-nav:not(.active) {
  background: #0c75c2;
  color: white;
}
.preview-modal {
  width: 598px;
  height: 480px;
  border-radius: 8px;
  position: relative;
  background: white !important;
}

.preview-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 1;
}

.preview-title {
  color: #0c74c2;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0.1rem;
  text-align: center;
}

.preview-text {
  color: var(--for-textfields, #666);

  /* shaded text */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
  margin-bottom: 0px;
}

.preview-history {
  margin-top: 1rem;
}

.preview-history-title {
  color: var(--Font, #2e2e2e);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.timeline-entries {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline-entry {
  background-color: #f0f9ff;
  height: 38px;
  padding: 1rem;
  padding-top: 10px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  background: var(--container-fill, #ddf2f9);
}

.timeline-entry span {
  color: var(--Font, #2e2e2e);

  /* shaded text */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

#addagain {
  color: var(--Font, #2e2e2e);
  font-family: Poppins;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}
.preview-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 5%;
  border: none;
  background-color: #f0f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.action-btn:hover {
  background-color: #e1f4ff;
}

.action-btn i {
  color: #0c74c2;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .preview-modal {
    width: 100%;
    height: auto;
    max-height: 90vh;
    margin: 1rem;
  }
}
.preview-modal {
  width: 598px;
  max-height: 480px !important;
  border-radius: 30px;
  position: relative;
  background: white;
  overflow: hidden;
}

.page-title {
  margin-bottom: 15px;
  margin-top: 15px;
}

.medications-table td:last-child {
  text-align: center;
}

.medications-table th:last-child {
  text-align: center;
}

.share-dropdown-item:hover {
  background: #f1f8fe;
  color: #0c75c2;
}

.share-icon {
  position: relative; /* Add this to make dropdown positioning work */
}

.share-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddf2f9;
  border-radius: 6px;
}

.share-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #ddf2f9;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 160px;
  display: none;
  z-index: 1000;
}

.share-dropdown.show {
  display: block;
}

.share-dropdown-item {
  padding: 8px 16px;
  color: #64748b;
  font-size: 14px;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  transition: all 0.2s;
}

.share-dropdown-item:hover {
  background: #f1f8fe;
  color: #0c75c2;
}
.medications-table-container {
  width: 100%;
  overflow: scroll;
}

.medications-table {
  width: 800px !important;
}

@media (max-width: 991px) {
  .medications-table-container {
    width: 100% !important;
    overflow-x: auto !important; /* Ensure horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
    display: block;
    max-width: 100%; /* Ensure it doesn’t exceed screen size */
    white-space: nowrap; /* Prevent content wrapping */
    position: relative; /* Ensure it respects the content inside */
  }

  .medications-table {
    min-width: 150% !important; /* Ensure enough space for buttons */
    width: auto !important;
    display: table;
  }
}

@media (max-width: 600px) {
  .medications-table {
    min-width: 200% !important; /* Ensure enough space for buttons */
  }
}

.status-dropdown-container {
  border-radius: 10px !important;
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
}

.status-dropdown-container select{
  border: none;
  outline: none;
  border-right: 5px solid #00000000 !important;
  border-radius: 10px !important;
  padding: 7px 15px;
  background: transparent;
  color: white;
}
.status-dropdown-container option{
    background: white;
  }

.medication-row {
  cursor: pointer;
}

.miss-doses-box{
  padding: 30px;
  width: 100%;
  max-width: 600px;
}
.miss-doses-box h4{
  color: #dc2626;
}

.medication-disable-row td{
  background: rgb(211, 211, 211) !important;
  opacity: 70% !important;
}