/* ==========================================================================
   DESIGN TOKENS – COLOR + TYPOGRAPHY SYSTEM
   ========================================================================== */

:root {
  /* Colors */
  --background: #fcf2e2;
  --foreground: #1a1a1a;
  --primary: #ca5132;
  --primary-foreground: #ffffff;
  --secondary: #305d53;
  --secondary-foreground: #ffffff;
  --muted: #e5cfae;
  --muted-foreground: #5a5a5a;
  --accent: #ef6f36;
  --accent-foreground: #ffffff;
  --card: #ffffff;
  --card-foreground: #1a1a1a;

  /* Typography System */
  --font-hero: 'Lora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */

  /* Radii & shadows */
  --radius-card: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 6px 18px rgba(15, 23, 42, 0.08);
}

/* ==========================================================================
   GLOBAL BASE STYLES
   ========================================================================== */

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at top left, #ffe3c3 0, #fcf2e2 45%, #faedd9 100%);
  color: var(--foreground);
}

a {
  color: var(--secondary);
}

a:hover,
a:focus {
  color: var(--accent);
}

small,
.text-muted {
  color: var(--muted-foreground) !important;
}

/* Typography hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--foreground);
}

h1.h3,
h1.h4 {
  font-weight: 600;
}

/* Page content wrapper (if you use .container) */
.main-content {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

/* ==========================================================================
   NAVBAR / TOP BAR – Improved Contrast
   ========================================================================== */

.navbar,
.navbar-light,
.navbar-dark {
  background-color: #f6e4c9 !important; /* soft beige */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary) !important; /* dark green */
}

/* Main nav links */
.navbar-nav .nav-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--foreground) !important;   /* strong dark text */
  padding: 0.65rem 1rem;
}

/* Hover */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary) !important;      /* burnt orange */
  background-color: rgba(202, 81, 50, 0.08);
  border-radius: 6px;
}

/* Active link */
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
  border-radius: 0;
}

/* Right side text ("Logged in as") */
.navbar-text {
  font-size: var(--text-sm);
  color: var(--foreground) !important;
  opacity: 0.85;
}

/* Logout button */
.navbar .btn-outline-secondary {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  background: transparent;
}

.navbar .btn-outline-secondary:hover {
  background-color: var(--primary);
  color: #fff !important;
}


/* ==========================================================================
   CARDS
   ========================================================================== */

.card {
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.card-header {
  background: #fdf4e2;
  border-bottom: 1px solid #f1dec1;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-base);
}

.card-body {
  background: var(--card);
}

/* Simple “section card” style for admin pages */
.section-card {
  border-radius: var(--radius-card);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  border: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 0.5rem;
}

/* Primary */
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--primary-foreground) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #a53f26 !important;
  border-color: #a53f26 !important;
}

/* Secondary */
.btn-secondary {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: var(--secondary-foreground) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #23443c !important;
  border-color: #23443c !important;
}

/* Outline */
.btn-outline-secondary {
  border-color: #b08b5b !important;
  color: #5a4a34 !important;
  background-color: transparent;
}

.btn-outline-secondary:hover {
  background-color: #f3e0c4 !important;
  color: #3c3020 !important;
}

/* Accent button (if you want one) */
.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover {
  background-color: #d75920;
  border-color: #d75920;
}

/* Pill buttons (used in dashboard, lists etc.) */
.btn-pill {
  border-radius: var(--radius-pill) !important;
  padding: 4px 14px;
  font-size: var(--text-sm);
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-control,
.form-select {
  border-radius: 0.6rem;
  border-color: #f0d3a6;
  background-color: #fffdf7;
  font-size: var(--text-sm);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(202, 81, 50, 0.18);
}

.form-label {
  font-size: 0.85rem;
  color: #5b4631;
  font-weight: 500;
}

/* Pill filter selects (dashboard filter) */
.form-select.rounded-pill {
  border-radius: var(--radius-pill) !important;
  background-color: #fff7eb;
}

/* Help text */
.form-text {
  color: var(--muted-foreground);
  font-size: 0.78rem;
}

/* ==========================================================================
   TABLES
   ========================================================================== */

.table {
  font-size: var(--text-sm);
  color: var(--foreground);
}

.table thead th {
  border-bottom: 1px solid #f1dec1;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--muted-foreground);
  letter-spacing: 0.06em;
}

.table tbody tr td {
  border-color: #f6e5c9;
  vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #fff7eb;
}

.table-hover tbody tr:hover {
  background-color: #fcebd3;
}

/* ==========================================================================
   BADGES
   ========================================================================== */

/* Generic tag */
.badge {
  font-size: 0.75rem;
  border-radius: 999px;
}

/* Status badges */
.badge-status-published {
  background: #dff7d8;
  color: #20552e;
}

.badge-status-draft {
  background: #e5e7eb;
  color: #374151;
}

.badge-status-review {
  background: #fef3c7;
  color: #92400e;
}

/* Soft / muted badges */
.badge-soft {
  background: #f4dec0;
  color: #5e4330;
}

/* ==========================================================================
   ALERTS
   ========================================================================== */

.alert {
  border-radius: 0.75rem;
  border: none;
  padding: 0.75rem 1rem;
  font-size: var(--text-sm);
}

.alert-info {
  background: #e7f0ff;
  color: #1d4ed8;
}

.alert-danger {
  background: #fee2e2;
  color: #b91c1c;
}

.alert-success {
  background: #dcfce7;
  color: #166534;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.pagination .page-link {
  border-radius: 999px !important;
  margin: 0 2px;
  border-color: #f0d3a6;
  color: #5a4a34;
}

.pagination .page-link:hover {
  background-color: #f3e0c4;
  border-color: #f0d3a6;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

/* ==========================================================================
   MODALS
   ========================================================================== */

.modal-content {
  border-radius: 1rem;
  border: none;
  box-shadow: var(--shadow-soft);
}

.modal-header {
  border-bottom-color: #f3e0c4;
  background: #fff8ec;
}

.modal-footer {
  border-top-color: #f3e0c4;
}

/* ==========================================================================
   TABS
   ========================================================================== */

.nav-tabs {
  border-bottom-color: #f1dec1;
}

.nav-tabs .nav-link {
  border-radius: 999px 999px 0 0;
  border-color: transparent;
  color: #5a4a34;
  font-size: var(--text-sm);
}

.nav-tabs .nav-link.active {
  border-color: #f1dec1 #f1dec1 #ffffff;
  background-color: #fffdf7;
  color: var(--primary);
}

/* ==========================================================================
   DASHBOARD-SPECIFIC STYLES
   ========================================================================== */

/* Header */
.dashboard-header {
  margin-bottom: 24px;
}

.dashboard-header h1 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--foreground);
}

.dashboard-header .subtitle {
  color: var(--muted-foreground);
  font-size: var(--text-sm);
}

/* Back link */
.dashboard-header .text-muted a {
  color: var(--muted-foreground);
}

.dashboard-header .text-muted a:hover {
  color: var(--secondary);
}

/* Stats cards */
.stats-card {
  border-radius: 16px;
  border: none;
  box-shadow: var(--shadow-soft);
  padding: 16px 18px;
  background: var(--card);
  color: var(--card-foreground);
}

.stats-label {
  font-size: 0.78rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stats-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.stats-sub {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.stats-card .text-success {
  color: var(--secondary) !important;
}

/* Models list */
.models-card {
  border-radius: var(--radius-card);
  border: none;
  box-shadow: var(--shadow-soft);
  background: var(--card);
  color: var(--card-foreground);
}

.model-row-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  overflow: hidden;
  background: #f5d7ae;
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-weight: 600;
  color: #3b2717;
  font-size: 0.9rem;
}

.model-name {
  font-weight: 500;
  font-family: var(--font-heading);
  font-size: var(--text-base);
}

.model-meta-langs .badge {
  font-size: 0.7rem;
  background: #f8e1b9;
  color: #5e4330;
}

/* Search/filter UI */
.search-input {
  border-radius: var(--radius-pill);
  padding-left: 38px;
  border-color: #f0d3a6;
  background-color: #fff7eb;
  font-size: var(--text-sm);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(202, 81, 50, 0.18);
}

.search-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #c29a65;
}

/* Recent activity panel */
.activity-card {
  border-radius: var(--radius-card);
  border: none;
  box-shadow: var(--shadow-soft);
  background: var(--card);
  color: var(--card-foreground);
}

.activity-item {
  padding: 10px 0;
  border-bottom: 1px solid #f5e2c1;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-title {
  font-size: 0.9rem;
  font-weight: 500;
}

.activity-model {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.activity-card .badge {
  border-radius: 999px;
  background: #f4dec0;
  color: #5e4330;
}

/* ==========================================================================
   STEP / MODULE LIST ENHANCEMENTS (for steps_list, modules_list, etc.)
   ========================================================================== */

.badge-skill {
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.7rem;
  background: #e0f2fe;
  color: #075985;
}

.badge-skill-empty {
  background: #e5e7eb;
  color: #4b5563;
}

.badge-media {
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.7rem;
  background: #fef3c7;
  color: #92400e;
}


/* ==========================================================================
   GENERIC LIST PAGES (modules, steps, models, etc.)
   ========================================================================== */

.page-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.page-header-bar-title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.page-header-bar-title h1 {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 600;
}

.page-header-bar-title .page-subtitle {
  font-size: var(--text-sm);
  color: var(--muted-foreground);
}

.page-header-badges .badge {
  margin-right: 0.25rem;
}

/* Container card used for tables on internal pages */
.list-card {
  border-radius: var(--radius-card);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  border: none;
}

/* table header row */
.list-card .table thead th {
  border-bottom: 1px solid #f1dec1;
}

/* little pill above table or in header */
.page-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: #fff3df;
  color: #5a3d23;
  padding: 4px 10px;
  font-size: 0.75rem;
}

/* small icons in header */
.page-meta-pill i {
  font-size: 0.9em;
}

/* small stats row under header (optional) */
.page-stat-text {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* table action buttons */
.table-actions .btn {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
}

/* status chips for modules, etc. */
.badge-module-status {
  border-radius: 999px;
  font-size: 0.75rem;
  padding: 3px 9px;
}

.badge-module-status.published {
  background: #dff7d8;
  color: #20552e;
}

.badge-module-status.draft {
  background: #e5e7eb;
  color: #374151;
}

.badge-module-status.review {
  background: #fef3c7;
  color: #92400e;
}

/* small helper text inside table cells */
.cell-muted {
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

/* on very small screens make header vertical */
@media (max-width: 576px) {
  .page-header-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-header-bar .btn-group,
  .page-header-bar .btn {
    width: 100%;
    justify-content: center;
  }
}
/* ==========================================================================
   House Models table (dashboard)
   ========================================================================== */

.table-house-models {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.table-house-models thead th {
  padding: 0.55rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  border-bottom: 1px solid #f4dec1;
  background: transparent;
}

.table-house-models tbody td {
  padding: 0.7rem 0.75rem;
  vertical-align: middle;
  border-bottom: 1px solid #f7e5c8;
}

.table-house-models tbody tr:last-child td {
  border-bottom: none;
}

/* first column: model */
.house-model-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.model-row-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.house-model-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.house-model-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.house-model-sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* details / specs text */
.house-meta-strong {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.8rem;
}

.house-meta-muted {
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

/* action buttons */
.table-house-models .table-actions {
  white-space: nowrap;
}

.table-house-models .table-actions .btn {
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 999px;
}

/* responsive: stack actions and shrink columns on small screens */
@media (max-width: 768px) {
  .table-house-models thead {
    display: none;
  }

  .table-house-models tbody tr {
    display: block;
    padding: 0.75rem 0;
  }

  .table-house-models tbody td {
    display: block;
    border-bottom: none;
    padding: 0.2rem 0.75rem;
  }

  .table-house-models tbody td:last-child {
    padding-top: 0.5rem;
  }

  .table-house-models .table-actions {
    text-align: left;
    margin-top: 0.3rem;
  }
}

/* Mobile navbar toggler */
.navbar-light .navbar-toggler {
  border-color: rgba(90, 74, 52, 0.4);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(58, 41, 26, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* ==========================================================================
   GLASSMORPHIC ENHANCEMENTS (OVERRIDES)
   Keep color system, add subtle glass + depth
   ========================================================================== */

/* Slightly more "floating" feel for the whole UI */
body {
  background: radial-gradient(circle at top left, #ffe3c3 0, #fcf2e2 45%, #faedd9 100%);
  background-attachment: fixed;
}

/* NAVBAR – glass panel with subtle border + blur */
.navbar,
.navbar-light,
.navbar-dark {
  background: rgba(246, 228, 201, 0.86) !important; /* soft beige, translucent */
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar-brand {
  letter-spacing: 0.03em;
}

.navbar-nav .nav-link {
  border-radius: 999px;
  padding-inline: 0.85rem;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
  border-bottom-width: 0;
  background: rgba(202, 81, 50, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

/* Keep toggler visible on top of glass */
.navbar-toggler {
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(252, 242, 226, 0.65);
}

/* CARDS – unified glass look */
.card,
.section-card,
.list-card,
.models-card,
.activity-card,
.stats-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.card-header {
  background: linear-gradient(
    135deg,
    rgba(253, 244, 226, 0.9),
    rgba(250, 234, 203, 0.9)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(241, 222, 193, 0.8);
}

/* TABLES – light glass rows */
.table {
  background-color: transparent;
}

.table-house-models tbody tr {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  overflow: hidden;
}

.table-house-models tbody td {
  border-bottom-color: rgba(247, 229, 200, 0.7);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 247, 235, 0.85);
}

.table-hover tbody tr:hover {
  background-color: rgba(252, 235, 211, 0.85);
}

/* FORMS – frosted inputs */
.form-control,
.form-select {
  background: rgba(255, 253, 247, 0.75);
  border-radius: 0.75rem;
  border: 1px solid rgba(240, 211, 166, 0.9);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary);
  box-shadow:
    0 0 0 1px rgba(202, 81, 50, 0.18),
    0 10px 25px rgba(15, 23, 42, 0.10);
}

/* Search pill */
.search-input {
  background: rgba(255, 247, 235, 0.8);
  border: 1px solid rgba(240, 211, 166, 0.85);
}

/* BUTTONS – more depth, same colors */
.btn {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, #ca5132, #ef6f36) !important;
  border-color: rgba(202, 81, 50, 0.9) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #a53f26, #ca5132) !important;
}

.btn-secondary {
  background: linear-gradient(135deg, #305d53, #3a7b6b) !important;
  border-color: rgba(48, 93, 83, 0.95) !important;
}

.btn-outline-secondary {
  background: rgba(243, 224, 196, 0.4) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* BADGES – softer, glass tags */
.badge,
.badge-status-published,
.badge-status-draft,
.badge-status-review,
.badge-soft,
.badge-skill,
.badge-skill-empty,
.badge-media,
.badge-module-status {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

/* MODALS – centered glass panels */
.modal-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

/* PAGE HEADER BAR – gentle blur card */
.page-header-bar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* Activity list separation a bit lighter */
.activity-item {
  border-bottom-color: rgba(245, 226, 193, 0.85);
}

/* Mobile tweaks – reduce shadow a bit on small screens */
@media (max-width: 768px) {
  .page-header-bar {
    border-radius: 1rem;
  }

  .card,
  .section-card,
  .list-card,
  .models-card,
  .activity-card,
  .stats-card {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }
}


/* ==========================================================================
   RESPONSIVENESS
   ========================================================================== */

@media (max-width: 768px) {
  .stats-value {
    font-size: 1.3rem;
  }

  .stats-card {
    padding: 12px 14px;
  }

  .model-row-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }
}
