:root {
  --sidebar-width: 280px;
  --sidebar-mini-width: 84px;
  --admin-bg: #f5f7fb;
  --admin-surface: #ffffff;
  --admin-surface-soft: #f8fafc;
  --admin-border: #dbe4ef;
  --admin-text: #1f2937;
  --admin-muted: #6b7280;
  --admin-primary: #1976d2;
  --admin-primary-dark: #0d47a1;
  --admin-success: #0f766e;
  --admin-warning: #d97706;
  --admin-danger: #dc2626;
  --admin-sidebar: #111827;
  --admin-sidebar-soft: #1f2937;
  --admin-shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.06);
  --admin-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
  --admin-shadow-lg: 0 26px 70px rgba(15, 23, 42, 0.12);
  --admin-ring: 0 0 0 4px rgba(37, 99, 235, 0.12);

  /* Metric cards — single place to control padding, type, and spacing site-wide */
  --metric-accent-width: 4px;
  --metric-accent-gap: 0.72rem;
  --metric-padding-y: 0.58rem;
  --metric-padding-x: 0.82rem;
  --metric-min-height: 0;
  --metric-grid-gap: 0.5rem;
  --metric-strip-gap: 0.42rem;
  --metric-strip-cols: 3;
  --metric-label-size: 0.68rem;
  --metric-value-size: 0.96rem;
  --metric-hint-size: 0.72rem;
  --metric-value-gap: 0.22rem;
  --metric-hint-gap: 0.2rem;
  --metric-icon-size: 2rem;
  --metric-top-gap: 0.15rem;
}

@media (min-width: 768px) {
  :root {
    --metric-padding-y: 0.68rem;
    --metric-padding-x: 0.92rem;
    --metric-value-size: 1.05rem;
    --metric-label-size: 0.72rem;
    --metric-hint-size: 0.74rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, #f8fbff 0%, var(--admin-bg) 42%, #eef4fa 100%);
  color: var(--admin-text);
  font-family: "Segoe UI", Arial, sans-serif;
}

a {
  text-decoration: none;
}

.admin-shell {
  min-height: 100vh;
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1040;
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  /* Reserve scrollbar gutter to keep inner content width stable so header/footer dividers align with scrollbar */
  scrollbar-gutter: stable;
  background: var(--admin-sidebar);
  color: #ffffff;
  box-shadow: 18px 0 42px rgba(15, 23, 42, 0.18);
  transform: translateX(0);
  transition: width 0.2s ease, transform 0.2s ease;
}

.sidebar-header {
  padding: 1.35rem 1.25rem 1.15rem;
  margin-inline: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: #ffffff;
}

.brand-mark:hover,
.brand-mark:focus {
  color: #ffffff;
}

.brand-icon,
.profile-avatar,
.metric-icon,
.nav-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 800;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1976d2, #0f766e);
  color: #ffffff;
}

.brand-copy,
.brand-title,
.brand-subtitle,
.nav-text,
.sidebar-footer-text {
  min-width: 0;
  transition: opacity 0.16s ease, width 0.16s ease;
}

.brand-title,
.brand-subtitle {
  display: block;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-subtitle {
  color: #9ca3af;
  font-size: 0.78rem;
}

.sidebar-nav {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1rem;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
  padding: 0.78rem 0.9rem;
  border-radius: 8px;
  color: #d1d5db;
  font-weight: 700;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
  white-space: nowrap;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link:focus,
.sidebar-nav .nav-link.active {
  background: var(--admin-sidebar-soft);
  color: #ffffff;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link:focus {
  transform: translateX(2px);
}

.nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #bfdbfe;
  font-size: 0.76rem;
}

.sidebar-footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  margin-inline: 1.25rem;
  padding: 1rem 0;
  color: #d1d5db;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  white-space: nowrap;
}

.sidebar-user {
  margin: auto 1rem 1rem;
  padding: 0.85rem;
  display: grid;
  justify-items: center;
  gap: 0.22rem;
  border: 1px solid var(--admin-sidebar-border);
  border-radius: 8px;
  background: var(--admin-sidebar-soft);
  text-align: center;
}

.sidebar-user-avatar {
  border: 3px solid #53e9b9;
}

.sidebar-user strong {
  color: var(--admin-sidebar-text-strong);
  font-size: 1rem;
  line-height: 1.1;
}

.sidebar-user small {
  color: var(--admin-sidebar-muted);
  font-size: 0.84rem;
}

.status-dot,
.notification-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.status-dot {
  flex: 0 0 auto;
  background: #22c55e;
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1030;
  display: none;
  background: rgba(15, 23, 42, 0.5);
}

.admin-main {
  width: auto;
  min-width: 0;
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  transition: margin-left 0.2s ease;
}

.admin-navbar {
  position: sticky;
  top: 0;
  z-index: 1020;
  min-height: 72px;
  border-bottom: 1px solid var(--admin-border);
  box-shadow: var(--admin-shadow-sm);
}

.admin-navbar.bg-white {
  background-color: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(14px);
}

.sidebar-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  padding: 9px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.sidebar-toggle:hover,
.sidebar-toggle:focus {
  border-color: #bfdbfe;
  background: #f8fbff;
  box-shadow: var(--admin-ring);
}

.sidebar-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--admin-text);
  border-radius: 999px;
}

.search-input {
  max-width: 520px;
  border-color: var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface-soft);
  min-height: 42px;
  box-shadow: none;
}

.search-input:focus {
  border-color: #93c5fd;
  box-shadow: var(--admin-ring);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-button,
.profile-button {
  border: 1px solid var(--admin-border);
  background: #ffffff;
  color: var(--admin-text);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.icon-button:hover,
.icon-button:focus,
.profile-button:hover,
.profile-button:focus {
  border-color: #bfdbfe;
  box-shadow: var(--admin-ring);
}

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-weight: 800;
}

.notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--admin-danger);
}

.notification-menu {
  width: min(320px, calc(100vw - 2rem));
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  box-shadow: var(--admin-shadow);
}

.notification-menu .dropdown-item {
  display: grid;
  gap: 0.2rem;
  padding-block: 0.7rem;
}

.notification-title {
  font-weight: 700;
}

.notification-time {
  color: var(--admin-muted);
  font-size: 0.82rem;
}

.profile-button {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  font-weight: 700;
}

.profile-avatar {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #e0ecff;
  color: var(--admin-primary-dark);
  font-size: 0.76rem;
}

.avatar-img {
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
}

.avatar-sm {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.avatar-md {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.avatar-xl {
  width: 78px;
  height: 78px;
  border-radius: 50%;
}

.profile-button .avatar-sm {
  border: 2px solid #52e7b8;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] .profile-button .avatar-sm {
  border-color: #54f0be;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.dashboard-content {
  min-height: calc(100vh - 132px);
}

.dashboard-content > .container-fluid {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.page-heading,
.panel-header,
.metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-heading {
  margin-bottom: 1.35rem;
}

.page-heading h1 {
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--admin-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.heading-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.btn {
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: var(--admin-primary);
  background: var(--admin-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--admin-primary-dark);
  background: var(--admin-primary-dark);
}

.metric-card,
.panel {
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface);
  box-shadow: var(--admin-shadow);
}

.metric-card {
  position: relative;
  min-height: var(--metric-min-height);
  padding: var(--metric-padding-y) var(--metric-padding-x);
  padding-left: calc(var(--metric-accent-width) + var(--metric-accent-gap));
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--metric-accent-width);
  background: var(--metric-color, var(--admin-primary));
}

.metric-card:hover {
  border-color: #c6d5e8;
  box-shadow: var(--admin-shadow-lg);
}

a.metric-card-link:hover .metric-card,
a.metric-card-link:focus-visible .metric-card {
  transform: translateY(-2px);
}

a.metric-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.metric-card-link:focus-visible {
  outline: none;
}

a.metric-card-link:focus-visible .metric-card {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
}

a.metric-card-link .metric-card {
  height: 100%;
}

a.metric-card-link .metric-card::after {
  content: "\F285";
  font-family: "bootstrap-icons";
  position: absolute;
  top: var(--metric-padding-y);
  right: var(--metric-padding-x);
  font-size: 0.85rem;
  opacity: 0;
  color: var(--metric-color, var(--admin-primary));
  transition: opacity 0.18s ease, transform 0.18s ease;
}

a.metric-card-link:hover .metric-card::after,
a.metric-card-link:focus-visible .metric-card::after {
  opacity: 0.55;
  transform: translateX(2px);
}

.dashboard-metrics-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--admin-muted, #64748b);
  margin-bottom: 0.75rem;
}

/* Metric layout — grid (dashboard) and strip (payment dues, etc.) */
.metric-grid {
  display: grid;
  gap: var(--metric-grid-gap);
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 576px) {
  .metric-grid-cols-2,
  .metric-grid-cols-3,
  .metric-grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .metric-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.metric-strip,
.dues-metric-strip {
  display: grid;
  grid-template-columns: repeat(var(--metric-strip-cols, 3), minmax(0, 1fr));
  gap: var(--metric-strip-gap);
  width: 100%;
}

.metric-strip-cols-2 {
  --metric-strip-cols: 2;
}

.metric-strip > .metric-card,
.dues-metric-strip > .metric-card {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-strip .metric-card .metric-label,
.dues-metric-strip .metric-card .metric-label,
.metric-strip .metric-card .metric-value,
.dues-metric-strip .metric-card .metric-value {
  overflow-wrap: anywhere;
}

.metric-strip .metric-card:hover,
.dues-metric-strip .metric-card:hover,
.metric-strip a.metric-card-link:hover .metric-card,
.dues-metric-strip a.metric-card-link:hover .metric-card {
  transform: none;
}

.metric-card .metric-top {
  margin-bottom: var(--metric-top-gap);
}

.metric-card .metric-icon {
  width: var(--metric-icon-size);
  height: var(--metric-icon-size);
  font-size: 0.95rem;
}

.metric-card .metric-label {
  font-size: var(--metric-label-size);
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.metric-card .metric-value {
  display: block;
  margin-top: var(--metric-value-gap);
  font-size: var(--metric-value-size);
  font-weight: 800;
  line-height: 1.15;
}

.metric-card .metric-hint,
.metric-card .metric-meta {
  margin-top: var(--metric-hint-gap);
  font-size: var(--metric-hint-size);
  line-height: 1.25;
}

.metric-hint {
  margin-bottom: 0;
  color: var(--admin-muted);
}

.metric-card .metric-meta {
  gap: 0.25rem;
}

.metric-strip > .metric-card > .metric-label,
.dues-metric-strip > .metric-card > .metric-label {
  display: block;
  margin-bottom: 0.08rem;
}

.panel-header-compact {
  padding-bottom: 0.65rem;
  margin-bottom: 0;
}

.panel-header-compact .table-search {
  max-width: 9rem;
}

.table-responsive-dues {
  overflow-x: visible;
}

.table-dues {
  table-layout: fixed;
  width: 100%;
}

.table-dues th,
.table-dues td {
  padding: 0.7rem 0.45rem;
  vertical-align: top;
}

.table-dues th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--admin-muted, #64748b);
  white-space: nowrap;
}

.table-dues th:first-child,
.table-dues .dues-cell-payment {
  width: 32%;
}

.table-dues th:nth-child(2),
.table-dues .dues-cell-installment {
  width: 33%;
}

.table-dues th:last-child,
.table-dues .dues-cell-status {
  width: 35%;
}

.dues-cell-payment,
.payments-cell-id,
.history-cell-payment {
  min-width: 0;
}

.dues-cell-payment .badge,
.payments-cell-id .badge,
.history-cell-payment .badge {
  font-size: inherit;
}

.badge-payment-id {
  display: inline-block;
  box-sizing: border-box;
  overflow: visible;
  text-overflow: unset;
}

.dues-amount {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.dues-day {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

.dues-date {
  font-size: 0.78rem;
  line-height: 1.25;
  margin-top: 0.15rem;
}

.dues-status-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  max-width: 100%;
}

.dues-status-stack .badge {
  font-size: 0.68rem;
  white-space: normal;
  text-align: right;
  line-height: 1.3;
}

.table-dues .btn-make-payment {
  padding: 0.2rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  min-width: 3.25rem;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Payments list — grouped columns (user/payments.php) */
.table-responsive-payments {
  overflow-x: visible;
}

.table-payments {
  table-layout: fixed;
  width: 100%;
}

.table-payments th,
.table-payments td {
  padding: 0.7rem 0.45rem;
  vertical-align: top;
}

.table-payments th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--admin-muted, #64748b);
  white-space: nowrap;
}

.table-payments th:first-child,
.table-payments .payments-cell-id {
  width: 33%;
}

.table-payments th:nth-child(2),
.table-payments .payments-cell-amounts {
  width: 34%;
}

.table-payments th:last-child,
.table-payments .payments-cell-progress {
  width: 33%;
}

.payments-cell-id .badge {
  font-size: inherit;
}

.payments-date {
  margin-top: 0.3rem;
  font-size: 0.76rem;
  line-height: 1.25;
}

.payments-amount-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.06rem;
  line-height: 1.2;
}

.payments-amount-row + .payments-amount-row {
  margin-top: 0.35rem;
}

.payments-amount-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--admin-muted, #64748b);
}

.payments-amount-value {
  font-size: 0.8rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.payments-status-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  max-width: 100%;
}

.payments-status-stack .badge {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  align-self: flex-end;
  padding: 0.18rem 0.42rem;
  font-size: 0.68rem;
  white-space: nowrap;
  line-height: 1.3;
  text-align: center;
}

.table-payments .btn-view-schedule {
  padding: 0.2rem 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .table-dues th,
  .table-dues td {
    padding: 0.85rem 0.65rem;
  }

  .table-payments th,
  .table-payments td {
    padding: 0.85rem 0.65rem;
  }

  .payments-amount-label {
    font-size: 0.72rem;
  }

  .payments-amount-value {
    font-size: 0.88rem;
  }

  .table-payments .btn-view-schedule {
    font-size: 0.82rem;
    padding: 0.25rem 0.7rem;
  }

  .panel-header-compact .table-search {
    max-width: 12rem;
  }
}

/* Transaction history — grouped columns (user/payment-history.php) */
.table-responsive-history {
  overflow-x: visible;
}

.table-history {
  table-layout: fixed;
  width: 100%;
}

.table-history th,
.table-history td {
  padding: 0.7rem 0.45rem;
  vertical-align: top;
}

.table-history th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--admin-muted, #64748b);
  white-space: nowrap;
}

.table-history th:first-child,
.table-history .history-cell-payment {
  width: 30%;
}

.table-history th:nth-child(2),
.table-history .history-cell-amount {
  width: 32%;
}

.table-history th:last-child,
.table-history .history-cell-status {
  width: 38%;
}

.history-installment-date {
  margin-top: 0.3rem;
  font-size: 0.88rem !important;
  font-weight: 600;
  line-height: 1.25;
}

.history-installment-day {
  margin-top: 0.12rem;
  font-size: 0.72rem;
  line-height: 1.2;
}

.history-amount-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.06rem;
  line-height: 1.2;
}

.history-amount-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--admin-muted, #64748b);
}

.history-amount-value {
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.history-screenshot-link {
  display: inline-block;
  margin-top: 0.35rem;
  line-height: 0;
}

.history-screenshot {
  width: 52px;
  height: 36px;
  object-fit: cover;
  border-radius: 0.35rem;
  border: 1px solid var(--admin-border, #dbe4ef);
}

.history-status-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.28rem;
  max-width: 100%;
}

.history-status-stack .badge {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  align-self: flex-end;
  padding: 0.18rem 0.42rem;
  font-size: 0.68rem;
  white-space: nowrap;
  line-height: 1.3;
  text-align: center;
}

.history-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.04rem;
  line-height: 1.2;
  max-width: 100%;
}

.history-meta-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--admin-muted, #64748b);
}

.history-meta-value {
  font-size: 0.68rem;
  overflow-wrap: anywhere;
  text-align: right;
}

.history-notes {
  margin-top: 0.08rem;
  font-size: 0.66rem;
  line-height: 1.25;
  text-align: right;
  overflow-wrap: anywhere;
}

@media (min-width: 768px) {
  .table-history th,
  .table-history td {
    padding: 0.85rem 0.65rem;
  }

  .history-installment-date {
    font-size: 0.88rem;
  }

  .history-amount-value {
    font-size: 0.92rem;
  }

  .history-screenshot {
    width: 64px;
    height: 44px;
  }

  .history-meta-value {
    font-size: 0.74rem;
  }
}

/* Payment schedule modal — compact on phones/tablets */
@media (max-width: 767.98px) {
  .schedule-modal-dialog {
    align-self: flex-start;
    align-items: stretch;
    min-height: 0;
    margin: 0.35rem auto;
    width: calc(100% - 0.7rem);
    max-width: calc(100% - 0.7rem);
    height: calc(100dvh - 0.7rem);
    max-height: calc(100dvh - 0.7rem);
  }

  .schedule-modal-dialog .modal-content {
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
  }

  .schedule-modal-dialog .modal-header {
    flex: 0 0 auto;
    padding: 0.55rem 0.75rem;
  }

  .schedule-modal-dialog .modal-title {
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .schedule-modal-dialog .modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0.55rem 0.75rem 0.75rem;
  }

  .schedule-modal-dialog #scheduleSummary {
    flex: 0 0 auto;
    margin-bottom: 0.45rem !important;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .schedule-modal-dialog .schedule-list {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .schedule-modal-dialog .schedule-item {
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding: 0.38rem 0.5rem;
    margin-bottom: 0.25rem;
    border-radius: 0.4rem;
  }

  .schedule-modal-dialog .schedule-item > div {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.25rem 0.4rem;
    min-width: 0;
  }

  .schedule-modal-dialog .schedule-item strong {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .schedule-modal-dialog .schedule-item .small {
    font-size: 0.66rem !important;
    line-height: 1.2;
  }
}

/* Submit payment proof modal */
.make-payment-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.85rem;
  margin-bottom: 1rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--admin-border, #dbe4ef);
  border-radius: 0.5rem;
  background: var(--admin-surface-soft, #f8fafc);
}

.make-payment-info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
  min-width: 0;
}

.make-payment-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--admin-muted, #64748b);
  line-height: 1.3;
}

.make-payment-info-value {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.make-payment-modal-dialog .badge.badge-payment-id {
  font-size: 0.66rem;
  padding: 0.16rem 0.38rem;
}

.make-payment-info-value.badge-payment-id {
  align-self: flex-start;
}

.make-payment-qr-link {
  display: flex;
  justify-content: center;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--admin-border, #dbe4ef);
}

.make-payment-methods {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--admin-border, #dbe4ef);
}

.make-payment-methods .make-payment-qr-link {
  margin-bottom: 0.75rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.make-payment-method-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.make-payment-bank-details {
  margin-bottom: 0.25rem;
}

.make-payment-bank-list,
.payment-methods-bank-list {
  display: grid;
  gap: 0.55rem;
}

.make-payment-bank-row,
.payment-methods-bank-row {
  display: grid;
  grid-template-columns: minmax(7rem, 9rem) minmax(0, 1fr);
  gap: 0.65rem;
  align-items: baseline;
}

.make-payment-bank-row dt,
.payment-methods-bank-row dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--admin-muted, #64748b);
}

.make-payment-bank-row dd,
.payment-methods-bank-row dd {
  margin: 0;
  font-weight: 600;
  word-break: break-word;
}

.payment-methods-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .payment-methods-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.payment-methods-block {
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.72);
}

.payment-methods-block-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.payment-methods-value {
  font-size: 1rem;
  font-weight: 700;
  word-break: break-word;
}

.payment-methods-qr-image {
  max-height: 240px;
}

.make-payment-qr-link .image-lightbox-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.make-payment-upload,
.image-upload-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.make-payment-upload-actions,
.image-upload-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.make-payment-upload-actions .btn,
.image-upload-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  box-shadow: none;
  font-size: 0.88rem;
  padding: 0.45rem 0.65rem;
}

.make-payment-upload-hint,
.image-upload-hint {
  font-size: 0.8rem;
  color: var(--admin-muted, #64748b);
  line-height: 1.35;
}

.make-payment-preview,
.image-upload-preview {
  max-height: 160px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.make-payment-modal-dialog .modal-body {
  padding: 1rem 1.1rem;
}

.make-payment-modal-dialog .modal-footer {
  gap: 0.55rem;
  padding: 0.75rem 1.1rem;
}

@media (max-width: 767.98px) {
  .make-payment-modal-dialog {
    margin: 0.5rem auto;
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
  }

  .make-payment-modal-dialog .modal-header {
    padding: 0.7rem 0.9rem;
  }

  .make-payment-modal-dialog .modal-title {
    font-size: 1rem;
    line-height: 1.3;
  }

  .make-payment-modal-dialog .modal-body {
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .make-payment-modal-dialog .modal-footer {
    padding: 0.65rem 0.9rem;
  }

  .make-payment-modal-dialog .modal-footer .btn {
    flex: 1 1 0;
    min-width: 0;
    font-size: 0.88rem;
    padding: 0.48rem 0.7rem;
  }

  .make-payment-info {
    gap: 0.65rem 0.75rem;
    margin-bottom: 0.85rem;
    padding: 0.6rem 0.65rem;
  }

  .make-payment-info-item {
    gap: 0.24rem;
  }

  .make-payment-info-label {
    font-size: 0.68rem;
  }

  .make-payment-info-value {
    font-size: 0.9rem;
  }

  .make-payment-modal-dialog .badge.badge-payment-id {
    font-size: 0.62rem;
  }

  .make-payment-qr-link {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .make-payment-qr-link .image-lightbox-link {
    font-size: 0.84rem;
  }

  .make-payment-preview {
    max-height: 130px;
  }

  .make-payment-upload {
    gap: 0.5rem;
  }

  .make-payment-upload-hint {
    font-size: 0.78rem;
  }
}

@media (min-width: 768px) {
  .make-payment-modal-dialog .badge.badge-payment-id {
    font-size: 0.72rem;
    padding: 0.18rem 0.42rem;
  }

  .make-payment-info-value {
    font-size: 1rem;
  }
}

.metric-primary {
  --metric-color: var(--admin-primary);
}

.metric-success {
  --metric-color: var(--admin-success);
}

.metric-warning {
  --metric-color: var(--admin-warning);
}

.metric-danger {
  --metric-color: var(--admin-danger);
}

.metric-label {
  color: var(--admin-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #eaf2ff;
  color: var(--metric-color, var(--admin-primary));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.metric-success .metric-icon {
  background: #e7f6f3;
}

.metric-warning .metric-icon {
  background: #fff4df;
}

.metric-danger .metric-icon {
  background: #ffecec;
}

.metric-value {
  margin-top: 1rem;
  color: var(--admin-text);
  font-size: 2.18rem;
  font-weight: 800;
  line-height: 1;
}

.metric-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.9rem;
  color: var(--admin-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.panel {
  padding: 1.35rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.panel:hover {
  border-color: #c6d5e8;
  box-shadow: var(--admin-shadow-lg);
}

.panel-header {
  margin-bottom: 1.25rem;
}

.panel-header p {
  font-size: 0.92rem;
}

.chart-bars {
  height: 292px;
  display: grid;
  grid-template-columns: repeat(6, minmax(38px, 1fr));
  align-items: end;
  gap: 1rem;
  padding: 1.2rem 0.4rem 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.chart-column {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 0.6rem;
  color: var(--admin-muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.chart-column span {
  width: 100%;
  height: var(--bar-size);
  min-height: 28px;
  display: block;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--admin-primary), var(--admin-success));
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}

.bar-42 {
  --bar-size: 42%;
}

.bar-58 {
  --bar-size: 58%;
}

.bar-51 {
  --bar-size: 51%;
}

.bar-72 {
  --bar-size: 72%;
}

.bar-66 {
  --bar-size: 66%;
}

.bar-83 {
  --bar-size: 83%;
}

.activity-list {
  display: grid;
  gap: 1.1rem;
}

.activity-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--admin-border);
}

.activity-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.activity-dot {
  width: 12px;
  height: 12px;
  margin-top: 0.45rem;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}

.table {
  --bs-table-bg: transparent;
}

.table thead th {
  color: var(--admin-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: top;
}

.table tbody td {
  min-width: 120px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  vertical-align: top;
}

.table tbody tr {
  transition: background 0.16s ease;
}

.table tbody tr:hover {
  background: #f8fbff;
}

.badge {
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
}

.badge.badge-payment-id {
  padding: 0.12rem 0.28rem;
  border-radius: 4px;
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  max-width: 100%;
  white-space: nowrap;
  word-break: keep-all;
}

@media (min-width: 768px) {
  .badge.badge-payment-id {
    padding: 0.18rem 0.38rem;
    border-radius: 6px;
    font-size: 0.65rem;
    line-height: 1.2;
  }
}

.table-search {
  width: min(260px, 100%);
  border-color: var(--admin-border);
  border-radius: 8px;
}

.table-media {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.product-thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid var(--admin-border);
}

.profile-avatar-lg {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  font-size: 1.5rem;
}

.profile-hero {
  display: grid;
  justify-items: center;
}

.profile-card {
  overflow: hidden;
}

.profile-cover {
  margin: -1.35rem -1.35rem 0.9rem;
  height: 96px;
  border-bottom: 1px solid var(--admin-border);
}

.profile-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.profile-photo {
  margin-top: -44px;
  border: 4px solid var(--admin-surface);
  box-shadow: var(--admin-shadow-sm);
}

.info-list,
.settings-list,
.legend-list {
  display: grid;
  gap: 0.85rem;
}

.info-list div,
.mini-card,
.settings-row,
.legend-list div {
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface-soft);
}

.info-list div,
.legend-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
}

.info-list span,
.mini-card span,
.settings-row small {
  color: var(--admin-muted);
  font-size: 0.84rem;
}

.info-list strong,
.mini-card strong {
  text-align: right;
}

.mini-card {
  display: grid;
  gap: 0.35rem;
  min-height: 104px;
  align-content: center;
  padding: 1rem;
}

.mini-card strong {
  color: var(--admin-text);
  font-size: 1.05rem;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
}

.settings-row span {
  display: grid;
  gap: 0.2rem;
}

.donut-chart {
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--admin-primary) 0 42%, var(--admin-success) 42% 68%, var(--admin-warning) 68% 86%, var(--admin-danger) 86% 100%);
  box-shadow: var(--admin-shadow-sm);
}

.donut-chart span {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--admin-text);
  font-size: 1.65rem;
  font-weight: 800;
}

.legend-list div {
  padding: 0.75rem 0.85rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.legend-list strong {
  margin-left: auto;
}

.progress {
  height: 1.15rem;
  border-radius: 8px;
  background: #e8eef6;
}

.progress-bar {
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
}

.progress-42 {
  width: 42%;
}

.progress-58 {
  width: 58%;
}

.progress-72 {
  width: 72%;
}

.blank-panel {
  min-height: 440px;
  display: grid;
  place-items: center;
  text-align: center;
}

.blank-state {
  max-width: 440px;
  display: grid;
  justify-items: center;
}

.blank-visual {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 0.9rem;
}

.auth-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fbff 0%, #eaf2ff 44%, #eef8f6 100%);
}

.auth-page,
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.auth-card,
.error-card {
  width: min(100%, 460px);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--admin-shadow-lg);
}

.auth-card {
  padding: 1.5rem;
}

.auth-visual {
  margin-bottom: 1rem;
  height: 96px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  overflow: hidden;
}

.auth-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.error-card {
  padding: 2rem;
  text-align: center;
}

.error-illustration {
  width: min(260px, 100%);
  max-height: 132px;
  object-fit: contain;
  margin: 0 auto 0.55rem;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--admin-text);
  justify-content: center;
}

.auth-brand:hover,
.auth-brand:focus {
  color: var(--admin-text);
}

.auth-brand span:last-child {
  display: grid;
  line-height: 1.2;
}

.auth-brand small,
.auth-footer {
  color: var(--admin-muted);
}

.auth-footer {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.92rem;
}

.error-code {
  color: var(--admin-primary);
  font-size: clamp(5rem, 18vw, 8rem);
  font-weight: 800;
  line-height: 1;
}

.admin-footer {
  padding: 1.1rem 0 1.35rem;
  color: var(--admin-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--admin-border);
  background: var(--admin-surface);
}

.admin-footer .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 992px) {
  body.sidebar-mini .admin-sidebar {
    width: var(--sidebar-mini-width);
  }

  body.sidebar-mini .admin-main {
    margin-left: var(--sidebar-mini-width);
  }

  body.sidebar-mini .brand-copy,
  body.sidebar-mini .nav-text,
  body.sidebar-mini .sidebar-footer-text {
    width: 0;
    opacity: 0;
    overflow: hidden;
  }

  body.sidebar-mini .sidebar-header,
  body.sidebar-mini .sidebar-footer {
    margin-inline: 1rem;
    padding-inline: 0;
  }

  body.sidebar-mini .sidebar-nav .nav-link {
    justify-content: center;
    padding-inline: 0.65rem;
  }

  body.sidebar-mini .sidebar-nav .nav-link:hover,
  body.sidebar-mini .sidebar-nav .nav-link:focus {
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .admin-sidebar {
    width: min(var(--sidebar-width), calc(100vw - 48px));
    transform: translateX(-100%);
  }

  .admin-main {
    margin-left: 0;
  }

  body.sidebar-open {
    overflow: hidden;
  }

  body.sidebar-open .admin-sidebar {
    transform: translateX(0);
  }

  body.sidebar-open .sidebar-backdrop {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .page-heading,
  .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .heading-actions {
    width: 100%;
    justify-content: stretch;
  }

  .heading-actions .btn {
    flex: 1 1 0;
  }

  .chart-bars {
    height: 220px;
    gap: 0.6rem;
    padding-inline: 0.25rem;
  }

  .panel {
    padding: 1.1rem;
  }

  /* Keep payment-dues summary strip in one row on phones */
  .metric-strip,
  .dues-metric-strip {
    --metric-padding-y: 0.46rem;
    --metric-padding-x: 0.4rem;
    --metric-accent-gap: 0.48rem;
    --metric-label-size: 0.58rem;
    --metric-value-size: clamp(0.65rem, 2.6vw, 0.82rem);
    --metric-strip-gap: 0.3rem;
  }

  .admin-footer .container-fluid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-nav .nav-link,
  .sidebar-toggle,
  .icon-button,
  .profile-button,
  .btn,
  .metric-card,
  .panel,
  .table tbody tr {
    transition: none;
  }

  .sidebar-nav .nav-link:hover,
  .sidebar-nav .nav-link:focus,
  .btn:hover,
  .btn:focus,
  .metric-card:hover {
    transform: none;
  }
}

html[data-theme="dark"] {
  --admin-bg: #0f172a;
  --admin-surface: #182235;
  --admin-surface-soft: #111827;
  --admin-border: #2f3b52;
  --admin-text: #e5edf7;
  --admin-muted: #9aa8bd;
  --admin-primary: #60a5fa;
  --admin-primary-dark: #3b82f6;
  --admin-success: #2dd4bf;
  --admin-warning: #fbbf24;
  --admin-danger: #f87171;
  --admin-sidebar: #090f1d;
  --admin-sidebar-soft: #172033;
  --admin-shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.24);
  --admin-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  --admin-shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.42);
  --admin-ring: 0 0 0 4px rgba(96, 165, 250, 0.18);
}

html[data-theme="dark"] body {
  background: linear-gradient(180deg, #111827 0%, var(--admin-bg) 48%, #0b1120 100%);
}

.brand-icon {
  font-size: 1.1rem;
}

.nav-icon {
  font-size: 0.95rem;
}

.theme-toggle i {
  font-size: 1rem;
}

.admin-navbar.bg-white,
.sidebar-toggle,
.icon-button,
.profile-button {
  background-color: var(--admin-surface) !important;
  color: var(--admin-text);
}

html[data-theme="dark"] .admin-navbar.bg-white {
  background-color: rgba(24, 34, 53, 0.92) !important;
}

html[data-theme="dark"] .profile-avatar {
  background: #1e3a5f;
  color: #bfdbfe;
}

.page-heading-copy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-width: 0;
}

.page-icon,
.section-title i {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #eaf2ff;
  color: var(--admin-primary-dark);
}

.page-icon {
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.section-title i {
  width: 34px;
  height: 34px;
  font-size: 0.95rem;
}

html[data-theme="dark"] .page-icon,
html[data-theme="dark"] .section-title i {
  background: #1e3a5f;
  color: #bfdbfe;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-light {
  border-color: var(--admin-border);
  background: var(--admin-surface-soft);
  color: var(--admin-text);
}

.btn-outline-secondary {
  border-color: var(--admin-border);
  color: var(--admin-text);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  border-color: var(--admin-primary);
  background: #eaf2ff;
  color: var(--admin-primary-dark);
}

html[data-theme="dark"] .btn-outline-secondary:hover,
html[data-theme="dark"] .btn-outline-secondary:focus {
  background: #1e3a5f;
  color: #bfdbfe;
}

html[data-theme="dark"] .chart-bars {
  background: linear-gradient(180deg, #111827 0%, #182235 100%);
}

html[data-theme="dark"] .table tbody tr:hover {
  background: #111827;
}

html[data-theme="dark"] .progress {
  background: #243149;
}

html[data-theme="dark"] .auth-body {
  background: linear-gradient(135deg, #0b1120 0%, #111827 48%, #10201f 100%);
}

.auth-card,
.error-card {
  background: var(--admin-surface);
}

.auth-theme-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.dropdown-menu,
.modal-content,
.accordion-item,
.accordion-button {
  border-color: var(--admin-border);
  background-color: var(--admin-surface);
  color: var(--admin-text);
}

.dropdown-item,
.accordion-body {
  color: var(--admin-text);
}

.dropdown-item:hover,
.dropdown-item:focus,
.accordion-button:not(.collapsed) {
  background-color: var(--admin-surface-soft);
  color: var(--admin-text);
}

.form-control,
.form-select {
  border-color: var(--admin-border);
  background-color: var(--admin-surface);
  color: var(--admin-text);
}

.form-control:focus,
.form-select:focus {
  border-color: #93c5fd;
  background-color: var(--admin-surface);
  color: var(--admin-text);
  box-shadow: var(--admin-ring);
}

.form-control::placeholder {
  color: var(--admin-muted);
}

.text-muted {
  color: var(--admin-muted) !important;
}

html[data-theme="dark"] .text-body {
  color: var(--admin-text) !important;
}

html[data-theme="dark"] .text-bg-secondary {
  background-color: #334155 !important;
  color: #e5edf7 !important;
}

@media (max-width: 767.98px) {
  .navbar-actions {
    gap: 0.5rem;
  }

  .icon-button,
  .profile-button,
  .sidebar-toggle {
    width: 40px;
    height: 40px;
  }

  .profile-button {
    padding: 0.3rem;
  }

  .page-heading-copy {
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .page-heading-copy {
    width: 100%;
  }

  .page-icon {
    width: 44px;
    height: 44px;
  }

  .panel-header .d-flex,
  .panel-header .form-control,
  .panel-header .form-select {
    width: 100%;
  }
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

body,
.admin-navbar,
.admin-sidebar,
.admin-main,
.metric-card,
.panel,
.auth-card,
.error-card,
.dropdown-menu,
.modal-content,
.form-control,
.form-select {
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.table {
  --bs-table-color: var(--admin-text);
  --bs-table-border-color: var(--admin-border);
  color: var(--admin-text);
}

.page-link {
  border-color: var(--admin-border);
  background: var(--admin-surface);
  color: var(--admin-text);
}

.page-link:hover,
.page-link:focus {
  border-color: var(--admin-primary);
  background: var(--admin-surface-soft);
  color: var(--admin-primary);
}

.page-item.active .page-link {
  border-color: var(--admin-primary);
  background: var(--admin-primary);
  color: #ffffff;
}

.page-item.disabled .page-link {
  border-color: var(--admin-border);
  background: var(--admin-surface-soft);
  color: var(--admin-muted);
}

.alert {
  border-radius: 8px;
}

html[data-theme="dark"] .alert-primary {
  border-color: #0d47a1;
  background: rgba(37, 99, 235, 0.16);
  color: #bfdbfe;
}

html[data-theme="dark"] .alert-success {
  border-color: #0f766e;
  background: rgba(15, 118, 110, 0.18);
  color: #99f6e4;
}

html[data-theme="dark"] .alert-warning {
  border-color: #d97706;
  background: rgba(217, 119, 6, 0.18);
  color: #fde68a;
}

html[data-theme="dark"] .alert-danger {
  border-color: #dc2626;
  background: rgba(220, 38, 38, 0.16);
  color: #fecaca;
}

html[data-theme="dark"] .modal-header,
html[data-theme="dark"] .modal-footer,
html[data-theme="dark"] .accordion-item {
  border-color: var(--admin-border);
}

html[data-theme="dark"] .btn-close {
  filter: invert(1) grayscale(100%) brightness(180%);
}

html[data-theme="dark"] .text-bg-info {
  background-color: #0e7490 !important;
  color: #ecfeff !important;
}

html[data-theme="dark"] .text-bg-warning {
  background-color: #b45309 !important;
  color: #fff7ed !important;
}

html[data-theme="dark"] .text-bg-success {
  background-color: #0f766e !important;
  color: #ecfdf5 !important;
}

html[data-theme="dark"] .text-bg-danger {
  background-color: #b91c1c !important;
  color: #fef2f2 !important;
}

@media (max-width: 991.98px) {
  .dashboard-content > .container-fluid {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .admin-sidebar {
    box-shadow: 18px 0 48px rgba(0, 0, 0, 0.28);
  }
}

@media (max-width: 767.98px) {
  .panel-header {
    align-items: flex-start;
  }

  .panel-header > .d-flex {
    width: 100%;
  }

  .table-search {
    width: 100%;
  }

  .auth-page,
  .error-page {
    padding: 1rem;
  }

  .auth-card,
  .error-card {
    padding: 1.15rem;
  }
}

@media (max-width: 420px) {
  .heading-actions {
    width: 100%;
  }

  .heading-actions .btn {
    width: 100%;
  }

  .profile-avatar-lg {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 575.98px) {
  .avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .avatar-xl {
    width: 70px;
    height: 70px;
  }

  .profile-cover {
    height: 82px;
    margin-bottom: 0.75rem;
  }

  .profile-photo {
    margin-top: -38px;
  }

  .auth-visual {
    height: 82px;
  }

  .product-thumb {
    width: 36px;
    height: 36px;
  }
}

html:not([data-theme="dark"]) {
  --admin-sidebar: #ffffff;
  --admin-sidebar-soft: #eef4ff;
  --admin-sidebar-border: #dbe4ef;
  --admin-sidebar-text: #475569;
  --admin-sidebar-text-strong: #0f172a;
  --admin-sidebar-muted: #64748b;
  --admin-sidebar-icon-bg: #eaf2ff;
  --admin-sidebar-icon: #1976d2;
  --admin-sidebar-shadow: 18px 0 42px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] {
  --admin-sidebar-border: rgba(255, 255, 255, 0.08);
  --admin-sidebar-text: #d1d5db;
  --admin-sidebar-text-strong: #ffffff;
  --admin-sidebar-muted: #9ca3af;
  --admin-sidebar-icon-bg: rgba(255, 255, 255, 0.08);
  --admin-sidebar-icon: #bfdbfe;
  --admin-sidebar-shadow: 18px 0 42px rgba(0, 0, 0, 0.34);
}

.admin-sidebar {
  border-right: 1px solid var(--admin-sidebar-border);
  background: var(--admin-sidebar);
  color: var(--admin-sidebar-text-strong);
  box-shadow: var(--admin-sidebar-shadow);
}

.sidebar-header {
  border-bottom-color: var(--admin-sidebar-border);
}

.brand-mark,
.brand-mark:hover,
.brand-mark:focus {
  color: var(--admin-sidebar-text-strong);
}

.brand-subtitle {
  color: var(--admin-sidebar-muted);
}

.sidebar-nav .nav-link {
  color: var(--admin-sidebar-text);
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link:focus,
.sidebar-nav .nav-link.active {
  background: var(--admin-sidebar-soft);
  color: var(--admin-sidebar-text-strong);
}

.nav-icon {
  background: var(--admin-sidebar-icon-bg);
  color: var(--admin-sidebar-icon);
}

.sidebar-footer {
  border-top-color: var(--admin-sidebar-border);
  color: var(--admin-sidebar-text);
}


/* Override Bootstrap styles */
.text-bg-primary {
  color:#fff!important;
  background-color:var(--admin-primary) !important
}

.text-bg-secondary {
  color:#fff!important;
  background-color:var(--admin-secondary) !important
}

.text-bg-success {
  color:#fff!important;
  background-color:var(--admin-success) !important
}

.make-payment-submit-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
}

.make-payment-submit-overlay-inner {
  text-align: center;
  padding: 1.5rem;
}

.app-toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: min(360px, calc(100vw - 2rem));
  pointer-events: none;
}

.app-toast {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  box-shadow: var(--admin-shadow);
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}

.app-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.app-toast-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.app-toast-danger {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.app-dialog-modal {
  --bs-modal-zindex: 2060;
}

.app-dialog-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.app-dialog-header {
  border-bottom: 1px solid var(--admin-border, #e2e8f0);
  padding: 1.1rem 1.25rem;
}

.app-dialog-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.app-dialog-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.app-dialog-icon-primary {
  background: #eff6ff;
  color: #1d4ed8;
}

.app-dialog-icon-success {
  background: #ecfdf5;
  color: #047857;
}

.app-dialog-icon-danger {
  background: #fef2f2;
  color: #b91c1c;
}

.app-dialog-icon-warning {
  background: #fffbeb;
  color: #b45309;
}

.app-dialog-message {
  color: var(--admin-text-muted, #64748b);
  line-height: 1.55;
}

.app-dialog-footer {
  border-top: 1px solid var(--admin-border, #e2e8f0);
  padding: 0.9rem 1.25rem;
  gap: 0.5rem;
}

.password-field-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.password-rules-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--admin-primary, #2563eb);
  line-height: 1;
  cursor: pointer;
}

.password-rules-trigger:hover,
.password-rules-trigger:focus-visible {
  color: var(--admin-primary-dark, #1d4ed8);
}

.password-rules-trigger .bi {
  font-size: 0.95rem;
}

.password-rules-list {
  margin: 0;
  padding-left: 1.15rem;
}

.password-rules-list li + li {
  margin-top: 0.35rem;
}

.app-lightbox-modal {
  --bs-modal-zindex: 2050;
}

.app-lightbox-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.2);
}

.app-lightbox-header,
.app-lightbox-footer {
  border-color: var(--admin-border, #e2e8f0);
}

.app-lightbox-body {
  background: #0f172a;
  padding: 1rem;
}

.app-lightbox-image {
  max-width: 100%;
  max-height: min(72vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.image-lightbox-trigger {
  display: inline-block;
  cursor: zoom-in;
  border: 0;
  background: none;
  padding: 0;
  line-height: 0;
  border-radius: 0.5rem;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.image-lightbox-trigger:hover,
.image-lightbox-trigger:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

.image-lightbox-trigger:focus-visible {
  outline: none;
}

a.image-lightbox-link {
  cursor: zoom-in;
  text-decoration: none;
}

a.image-lightbox-link:hover {
  text-decoration: underline;
}

.received-screenshot {
  display: block;
}

.ajax-form-feedback {
  margin-bottom: 1rem;
}

.readonly-field {
  background-color: var(--bs-secondary-bg);
  cursor: not-allowed;
}