:root {
  --primary-navy: #0F172A;
  --secondary-navy: #1E293B;
  --accent-indigo: #4F46E5;
  --accent-emerald: #10B981;
  --bg-warm: #F8FAFC;
  --bg: #F8FAFC;
  --bg-2: #ffffff;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-strong: #ffffff;
  --text: #0F172A;
  --muted: #64748B;
  --accent: #4F46E5;
  --accent-2: #10B981;
  --accent-3: #6366F1;
  --line: rgba(15, 23, 42, 0.08);
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

body {
  margin-bottom: 0;
  color: var(--text);
  background-color: var(--bg-warm);
}

/* Micro-Interaction Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

/* Brand Image Sizing & Scaling Rules */
.brand-logo-img {
  height: 48px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.2s ease-in-out;
}

.brand-name-img {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}

.brand-name-img:hover {
  transform: scale(1.02);
}

@media (max-width: 767.98px) {
  .brand-logo-img {
    height: 40px;
    max-height: 40px;
  }
  .brand-name-img {
    height: 34px;
    max-height: 34px;
    max-width: 200px;
  }
}

@media (max-width: 575.98px) {
  .brand-logo-img {
    height: 34px;
    max-height: 34px;
  }
  .brand-name-img {
    height: 28px;
    max-height: 28px;
    max-width: 155px;
  }
}

/* Mobile Responsive Navbar Collapse Drawer Styling */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #ffffff;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-top: 0.75rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(15, 23, 42, 0.08);
  }

  .navbar-nav {
    padding: 0.5rem 0;
  }

  .navbar-nav .nav-item {
    margin-bottom: 0.25rem;
  }

  .navbar-nav .nav-link {
    padding: 0.65rem 0.9rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background-color: rgba(79, 70, 229, 0.06);
    color: var(--accent-indigo);
  }

  .navbar-nav .dropdown-menu {
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    background-color: #f8fafc;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
  }

  .navbar-nav .dropdown-item {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
  }
}

/* Accessible Touch Targets (min height 48px) */
.form-control,
.form-select,
.btn,
.form-floating > .form-control,
.form-floating > .form-select {
  min-height: 48px;
}

/* Offcanvas Drawer Navigation Styling */
.offcanvas-navbar {
  background-color: #ffffff;
}

.offcanvas-navbar .nav-link {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--secondary-navy);
  transition: all 0.2s ease;
}

.offcanvas-navbar .nav-link:hover {
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--accent-emerald);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem rgba(255, 255, 255, 0.9), 0 0 0 0.3rem rgba(191, 61, 87, 0.22);
}

.site-navbar {
  margin: 0;
  width: 100%;
  border-radius: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.site-navbar .nav-link {
  color: var(--secondary-navy);
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  transition: color 0.2s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  color: var(--accent-indigo);
}

.site-footer {
  margin-top: 3rem;
  padding: 1.25rem 0 2rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 0 2rem;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
}

.home-hero::before {
  width: 20rem;
  height: 20rem;
  right: -8rem;
  top: -6rem;
  background: radial-gradient(circle, rgba(191, 61, 87, 0.24), transparent 64%);
}

.home-hero::after {
  width: 18rem;
  height: 18rem;
  left: -6rem;
  bottom: 0;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.16), transparent 66%);
}

.hero-surface {
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 242, 0.84));
  border: 1px solid rgba(191, 61, 87, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-badge,
.eyebrow,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-kicker {
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin: 0.1rem 0 1rem;
}

.hero-copy {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-actions .btn {
  border-radius: 999px;
  padding-inline: 1.2rem;
  font-weight: 700;
}

.hero-actions .btn-light {
  background: linear-gradient(135deg, #ffffff, #fff4ef);
  border-color: transparent;
  color: var(--accent);
}

.hero-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.42);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(191, 61, 87, 0.1);
  box-shadow: 0 8px 24px rgba(23, 15, 36, 0.05);
  font-size: 0.92rem;
  color: var(--text);
}

.match-panel {
  padding: 1.4rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 242, 0.88));
  border: 1px solid rgba(191, 61, 87, 0.12);
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel-head h2,
.section-heading h2 {
  margin: 0.15rem 0 0;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.panel-subcopy {
  margin-top: 0.55rem;
  max-width: 30rem;
  color: var(--muted);
  line-height: 1.6;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  font-size: 0.82rem;
  font-weight: 700;
}

.live-badge span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 0.35rem rgba(16, 185, 129, 0.18);
}

.segmented-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.segmented-filter .btn {
  border-radius: 999px;
  border: 1px solid rgba(191, 61, 87, 0.12);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  padding-inline: 1rem;
}

.segmented-filter .btn.active,
.segmented-filter .btn:hover {
  background: linear-gradient(135deg, var(--accent), #e05672);
  color: #fff;
  border-color: transparent;
}

.filter-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.filter-control {
  border-radius: 1rem;
  border-color: rgba(191, 61, 87, 0.12);
  background: rgba(255, 255, 255, 0.96);
  min-height: 3.15rem;
}

.filter-range {
  width: 100%;
  accent-color: var(--accent);
}

.range-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--muted);
}

.range-value {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(191, 61, 87, 0.08);
  color: var(--accent);
}

.panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(191, 61, 87, 0.1);
}

.panel-foot .btn {
  border-radius: 999px;
  font-weight: 700;
}

.section-wrap {
  padding: 3rem 0;
}

.section-heading {
  max-width: 44rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  margin: 0.8rem auto 0;
  max-width: 40rem;
  line-height: 1.7;
}

.stat-card {
  height: 100%;
  padding: 1.3rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(191, 61, 87, 0.1);
  box-shadow: var(--shadow-soft);
}

.stat-card__value {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.stat-card__label {
  margin-top: 0.3rem;
  color: var(--muted);
}

.spotlight-card {
  height: 100%;
  padding: 1.4rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(191, 61, 87, 0.09);
  box-shadow: var(--shadow-soft);
}

.profile-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.profile-card--featured {
  border: 1px solid rgba(191, 61, 87, 0.16);
  box-shadow: 0 26px 70px rgba(191, 61, 87, 0.14);
}

.profile-card--featured .profile-card__media::after {
  content: "Recommended";
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.profile-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.3), transparent 40%),
    linear-gradient(135deg, rgba(191, 61, 87, 0.9), rgba(217, 119, 6, 0.86));
}

.profile-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.1) 0%, rgba(9, 9, 11, 0.78) 100%);
}

.profile-badge {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.profile-badge--soft {
  background: rgba(255, 255, 255, 0.12);
}

.profile-score {
  align-self: flex-end;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.profile-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 1.5rem;
}

.profile-placeholder__initials {
  width: 5rem;
  height: 5rem;
  border-radius: 1.5rem;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.profile-placeholder p {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  opacity: 0.88;
}

.profile-card__body {
  padding: 1.1rem 1.1rem 1.2rem;
}

.profile-card__name {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.profile-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.9rem 0;
}

.profile-card__facts {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(191, 61, 87, 0.08);
  border-bottom: 1px solid rgba(191, 61, 87, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
}

.profile-card__facts strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
}

.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(191, 61, 87, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.profile-note {
  min-height: 3.2rem;
  color: var(--muted);
  line-height: 1.6;
}

.profile-card__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.profile-card__actions .btn {
  border-radius: 999px;
  font-weight: 700;
}

.profile-card__actions .btn-danger {
  box-shadow: 0 12px 28px rgba(191, 61, 87, 0.18);
}

.timeline-step {
  height: 100%;
  padding: 1.35rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(191, 61, 87, 0.1);
  box-shadow: var(--shadow-soft);
}

.timeline-step__number {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #e35c78);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(191, 61, 87, 0.22);
}

.timeline-step h3,
.plan-card h3 {
  margin-top: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.timeline-step p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text);
  line-height: 1.6;
}

.feature-list i {
  color: var(--accent);
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

.plan-card {
  height: 100%;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(191, 61, 87, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.plan-card--featured {
  background: linear-gradient(145deg, rgba(191, 61, 87, 0.1), rgba(255, 255, 255, 0.94));
  border-color: rgba(191, 61, 87, 0.18);
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.plan-duration {
  color: var(--muted);
  margin-top: -0.25rem;
}

.story-card {
  height: 100%;
  padding: 1.4rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(191, 61, 87, 0.08);
  box-shadow: var(--shadow-soft);
}

.story-card__quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}

.story-card__person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.story-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ec7a5d);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 2.3rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #861a39 0%, #c53a53 42%, #e56a4f 72%, #f0b35f 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -8rem -7rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.cta-panel .btn {
  border-radius: 999px;
  font-weight: 800;
  padding-inline: 1.2rem;
}

.cta-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-panel__mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.cta-panel__mini-card {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.cta-panel__mini-card strong {
  display: block;
  font-size: 1.05rem;
}

.cta-panel__mini-card span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
}

.empty-state {
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(191, 61, 87, 0.2);
  color: var(--muted);
}

.auth-page,
.profile-page {
  padding: 1.5rem 0 3rem;
}

.auth-shell,
.profile-shell {
  padding: 1.25rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(191, 61, 87, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.auth-aside,
.profile-aside {
  height: 100%;
  padding: 1.5rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(191, 61, 87, 0.97), rgba(217, 119, 6, 0.9));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.auth-aside h1,
.profile-aside h1,
.auth-aside h2,
.profile-aside h2 {
  font-weight: 900;
  letter-spacing: -0.04em;
}

.auth-aside p,
.profile-aside p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.auth-card,
.profile-card-panel {
  height: 100%;
  padding: 1.5rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(191, 61, 87, 0.1);
  box-shadow: var(--shadow-soft);
}

.auth-card .form-control,
.auth-card .form-select,
.profile-card-panel .form-control,
.profile-card-panel .form-select {
  min-height: 3.2rem;
  border-radius: 1rem;
  border-color: rgba(191, 61, 87, 0.12);
}

.auth-field,
.profile-field {
  position: relative;
}

.auth-field .form-control,
.profile-field .form-control {
  padding-right: 3rem;
}

.input-icon {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
}

.input-icon:hover {
  color: var(--accent);
}

.form-caption {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-stack {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.feature-stack__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-stack__item i {
  margin-top: 0.1rem;
  color: #fff;
  font-size: 1.1rem;
}

.feature-stack__item strong {
  display: block;
  margin-bottom: 0.15rem;
}

.auth-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.auth-stat {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.auth-stat strong {
  display: block;
  font-size: 1.05rem;
}

.auth-stat span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.profile-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.profile-toolbar .btn {
  border-radius: 999px;
  font-weight: 700;
}

.profile-grid {
  display: grid;
  gap: 1rem;
}

.profile-list-shell {
  padding: 1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(191, 61, 87, 0.1);
  box-shadow: var(--shadow-soft);
}

.profile-list-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(191, 61, 87, 0.08);
  box-shadow: 0 12px 30px rgba(23, 15, 36, 0.05);
}

.profile-list-card__media {
  flex: 0 0 110px;
  width: 110px;
  height: 140px;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(191, 61, 87, 0.9), rgba(217, 119, 6, 0.86));
}

.profile-list-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-list-card__media .profile-photo-frame__placeholder {
  height: 100%;
}

.profile-list-card__body {
  flex: 1;
}

.profile-list-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0;
}

.profile-list-card__meta .profile-chip {
  background: rgba(191, 61, 87, 0.08);
}

.profile-list-card__summary {
  color: var(--muted);
  line-height: 1.65;
}

.profile-list-card__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.profile-list-card__actions .btn {
  border-radius: 999px;
  font-weight: 700;
}

.profile-photo-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(191, 61, 87, 0.95), rgba(217, 119, 6, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.profile-photo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  grid-area: 1 / 1;
}

.profile-photo-frame > .profile-photo-frame__placeholder {
  width: 100%;
  height: 100%;
  grid-area: 1 / 1;
}

.profile-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo-frame__placeholder {
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.profile-photo-frame__placeholder i {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.profile-gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 0.6rem;
}

.profile-gallery-strip__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.95rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  aspect-ratio: 1 / 1;
}

.profile-gallery-strip__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-gallery-strip__empty {
  padding: 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
}

.gallery-preview-grid__item {
  padding: 0.65rem;
  border-radius: 1rem;
  background: rgba(191, 61, 87, 0.06);
  border: 1px solid rgba(191, 61, 87, 0.08);
}

.gallery-preview-grid__item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}

.gallery-preview-grid__item span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.interest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.interest-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 61, 87, 0.14);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  user-select: none;
}

.interest-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(191, 61, 87, 0.28);
}

.interest-chip.is-selected {
  background: rgba(191, 61, 87, 0.1);
  border-color: rgba(191, 61, 87, 0.34);
  box-shadow: 0 10px 22px rgba(191, 61, 87, 0.12);
}

.interest-chip input {
  margin: 0;
  accent-color: var(--accent);
}

.interest-chip span {
  font-weight: 700;
}

.profile-section {
  margin-top: 1.25rem;
  padding: 1.2rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(191, 61, 87, 0.08);
}

.profile-section h3 {
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.profile-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.profile-form-actions .btn {
  border-radius: 999px;
  font-weight: 700;
}

.profile-details-page {
  padding: 1.5rem 0 3rem;
}

.details-shell {
  padding: 1.25rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(191, 61, 87, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.details-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.details-topbar__meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.details-gallery-card,
.details-summary-card,
.details-info-card {
  padding: 1.25rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(191, 61, 87, 0.1);
  box-shadow: var(--shadow-soft);
}

.details-gallery-stage {
  position: relative;
  min-height: 34rem;
  border-radius: 1.4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(191, 61, 87, 0.95), rgba(217, 119, 6, 0.88));
}

.details-gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
}

.details-gallery-stage__overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.02) 0%, rgba(9, 9, 11, 0.78) 100%);
  color: #fff;
}

.details-gallery-stage__eyebrow {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.details-gallery-stage__controls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.details-gallery-stage__controls .btn,
.gallery-lightbox__nav,
.gallery-lightbox__close {
  border-radius: 999px;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  border: 0;
}

.details-gallery-stage__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(23, 15, 36, 0.14);
}

.details-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.details-gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 1rem;
  background: transparent;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 20px rgba(23, 15, 36, 0.08);
}

.details-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-gallery-thumb.is-active {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.details-summary-card {
  position: sticky;
  top: 1.5rem;
}

.details-score {
  min-width: 4.4rem;
  padding: 0.7rem 0.9rem;
  border-radius: 1rem;
  text-align: center;
  background: rgba(191, 61, 87, 0.08);
  color: var(--accent);
}

.details-score strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.details-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.details-meta-card {
  padding: 0.95rem;
  border-radius: 1rem;
  background: rgba(191, 61, 87, 0.06);
}

.details-meta-card span,
.details-contact__grid span,
.details-info-list span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.details-meta-card strong,
.details-contact__grid strong,
.details-info-list strong {
  display: block;
  margin-top: 0.15rem;
  font-weight: 800;
}

.details-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.details-actions .btn {
  border-radius: 999px;
  font-weight: 800;
  flex: 1 1 0;
}

.details-about,
.details-contact,
.details-upgrade {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(191, 61, 87, 0.08);
}

.details-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.details-upgrade {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.details-upgrade__lock {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(191, 61, 87, 0.12);
  color: var(--accent);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.details-locked-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.details-locked-item {
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: rgba(107, 114, 128, 0.1);
  color: var(--muted);
  text-align: center;
}

.details-info-card {
  height: 100%;
}

.details-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1055;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 12, 24, 0.78);
  backdrop-filter: blur(8px);
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 2rem));
  height: min(85vh, 760px);
  margin: 5vh auto;
  border-radius: 1.75rem;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox__dialog img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111827;
}

.gallery-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
}

.gallery-lightbox__nav--prev {
  left: 1rem;
}

.gallery-lightbox__nav--next {
  right: 1rem;
}

.gallery-lightbox__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.25rem;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.82) 100%);
  text-align: center;
  font-weight: 700;
}

.filter-summary {
  font-weight: 700;
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .hero-surface {
    padding: 1.2rem;
  }

  .panel-head {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    line-height: 1.05;
  }

  .hero-actions,
  .trust-strip,
  .panel-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-foot .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .stat-card__value {
    font-size: 1.65rem;
  }

  .cta-panel {
    padding: 1.4rem;
  }

  .cta-panel__mini {
    flex-direction: column;
  }

  .details-gallery-stage {
    min-height: 24rem;
  }

  .details-gallery-stage img {
    min-height: 24rem;
  }

  .details-meta-grid,
  .details-contact__grid,
  .details-locked-grid,
  .details-info-list {
    grid-template-columns: 1fr;
  }

  .details-actions {
    flex-direction: column;
  }

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

  .gallery-lightbox__dialog {
    width: calc(100% - 1rem);
    height: 80vh;
    margin: 8vh auto;
  }
}

/* ==========================================================================
   Shaadi.com Aesthetic Profile Cards & Mobile View Styling
   ========================================================================== */

:root {
  --shaadi-red: #d8232a;
  --shaadi-red-hover: #b71c1c;
  --shaadi-gradient: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
  --shaadi-gold: #ffb300;
  --shaadi-soft-bg: #fff5f5;
}

.shaadi-card {
  position: relative;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(216, 35, 42, 0.12);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.shaadi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(216, 35, 42, 0.15);
  border-color: rgba(216, 35, 42, 0.3);
}

.shaadi-card--featured {
  border: 2px solid var(--shaadi-gold);
  box-shadow: 0 12px 30px rgba(255, 179, 0, 0.2);
}

.shaadi-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.shaadi-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.shaadi-card:hover .shaadi-card-img {
  transform: scale(1.05);
}

.shaadi-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a1b2e 0%, #1e293b 100%);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
}

.shaadi-avatar-initials {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.75rem;
}

.shaadi-avatar-placeholder p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.shaadi-badge-overlay {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.shaadi-badge-verified {
  background: rgba(16, 185, 129, 0.95);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.shaadi-badge-premium {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.shaadi-badge-age {
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.shaadi-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.shaadi-profile-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.shaadi-profile-id {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.shaadi-info-grid {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.875rem;
  padding: 0.75rem 0;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
  border-bottom: 1px dashed rgba(15, 23, 42, 0.1);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.shaadi-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #334155;
  line-height: 1.3;
}

.shaadi-info-item i {
  color: var(--shaadi-red);
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.shaadi-info-item span.label {
  font-weight: 600;
  color: #64748b;
  min-width: 75px;
}

.shaadi-info-item span.value {
  font-weight: 700;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shaadi-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.shaadi-btn-primary {
  background: var(--shaadi-gradient);
  color: #ffffff !important;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.2rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  flex: 1;
  min-height: 44px;
}

.shaadi-btn-primary:hover {
  background: linear-gradient(135deg, #c61f25 0%, #9a1515 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(216, 35, 42, 0.35);
  transform: translateY(-1px);
}

.shaadi-btn-outline {
  background: #ffffff;
  color: var(--shaadi-red) !important;
  border: 1.5px solid var(--shaadi-red);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  min-height: 44px;
}

.shaadi-btn-outline:hover {
  background: var(--shaadi-soft-bg);
  color: var(--shaadi-red-hover) !important;
  border-color: var(--shaadi-red-hover);
}

/* Mobile Friendly Responsive Adjustments for Shaadi Cards */
@media (max-width: 575.98px) {
  .shaadi-card {
    border-radius: 1rem;
  }
  
  .shaadi-card-media {
    aspect-ratio: 4 / 3;
  }
  
  .shaadi-card-body {
    padding: 1rem;
  }

  .shaadi-profile-name {
    font-size: 1.1rem;
  }

  .shaadi-info-grid {
    gap: 0.4rem;
    font-size: 0.825rem;
    padding: 0.6rem 0;
  }

  .shaadi-card-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .shaadi-btn-primary,
  .shaadi-btn-outline {
    width: 100%;
  }
}

/* Modern Multi-Select Pill & Chip Styling */
.modern-chip-container {
  background: #f8fafc;
  border: 1px solid #e2e8f0 !important;
  border-radius: 1rem;
  padding: 1rem;
}

.modern-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modern-select-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 50rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.modern-select-chip input[type="checkbox"] {
  display: none;
}

.modern-select-chip:hover {
  border-color: #6366f1;
  color: #4f46e5;
  background-color: #f5f3ff;
  transform: translateY(-1px);
}

.modern-select-chip.active {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.modern-select-chip.active .chip-icon {
  color: #ffffff !important;
}

/* Mobile Dashboard Responsiveness & Polish Enhancements */
@media (max-width: 767.98px) {
  .container-fluid {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  /* Table Mobile Enhancements */
  .table-responsive {
    border-radius: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table th, .table td {
    white-space: nowrap;
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }

  .table .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .table .btn-group .btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.78rem;
    border-radius: 0.375rem !important;
  }

  /* Mobile Dashboard Stat Cards */
  .card-header {
    padding: 1rem !important;
  }

  .card-body {
    padding: 1rem !important;
  }

  /* Compact Badges on Mobile */
  .badge {
    font-size: 0.75rem;
  }
}


