@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  color-scheme: light;
  --bg-1: #f5f8fc;
  --bg-2: #edf3ff;
  --text: #0f172a;
  --muted: #475569;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-border: #d9e2f2;
  --line: #d8e3f3;
  --primary: #0f766e;
  --primary-strong: #115e59;
  --primary-ink: #f4fffd;
  --secondary: #e4ebf7;
  --secondary-ink: #1e293b;
  --danger: #b91c1c;
  --danger-strong: #991b1b;
  --focus: rgba(15, 118, 110, 0.24);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 8px 18px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
}

html.dark {
  color-scheme: dark;
  --bg-1: #071118;
  --bg-2: #0d1726;
  --text: #e7ecf4;
  --muted: #8ea1bd;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-border: #1f2f47;
  --line: #233650;
  --primary: #14b8a6;
  --primary-strong: #0d9488;
  --primary-ink: #042f2e;
  --secondary: #17263a;
  --secondary-ink: #d9e5fb;
  --danger: #f87171;
  --danger-strong: #ef4444;
  --focus: rgba(20, 184, 166, 0.28);
  --shadow-lg: 0 20px 45px rgba(2, 6, 23, 0.52);
  --shadow-sm: 0 8px 18px rgba(2, 6, 23, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', 'IBM Plex Sans', 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(56, 189, 248, 0.14), transparent 40%),
    radial-gradient(circle at 88% 0%, rgba(20, 184, 166, 0.12), transparent 34%),
    linear-gradient(150deg, var(--bg-1), var(--bg-2));
  line-height: 1.42;
  min-height: calc(var(--app-vh, 1vh) * 100);
  min-height: 100dvh;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
}

a {
  color: #0c6ea5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img,
svg,
canvas,
video {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

input[type='checkbox'],
input[type='radio'] {
  accent-color: var(--primary);
}

.input,
.select {
  -webkit-appearance: none;
  appearance: none;
}

.select {
  background-image:
    linear-gradient(45deg, transparent 50%, #5c6c84 50%),
    linear-gradient(135deg, #5c6c84 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.35rem;
}

.dark .select {
  background-image:
    linear-gradient(45deg, transparent 50%, #b8c6da 50%),
    linear-gradient(135deg, #b8c6da 50%, transparent 50%);
}

.app-shell {
  display: flex;
  min-height: calc(var(--app-vh, 1vh) * 100);
  min-height: 100dvh;
}

.page-width {
  width: min(100%, 1540px);
  margin: 0 auto;
}

.app-sidebar {
  width: 16rem;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  max-height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 25;
}

.sidebar-backdrop {
  display: none;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.topbar-title {
  min-width: 0;
}

.topbar-actions {
  min-width: 0;
}

.menu-toggle {
  display: none;
  flex-shrink: 0;
}

.mobile-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar {
  display: none;
}

.mobile-nav a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  padding: 0.42rem 0.82rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dark .mobile-nav a {
  background: rgba(12, 20, 34, 0.9);
}

.mobile-nav a:hover {
  text-decoration: none;
  border-color: #6dd3cb;
  color: var(--primary-strong);
}

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 35%);
}

.btn-primary,
.btn-secondary,
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 11px;
  border: 1px solid transparent;
  padding: 0.56rem 0.92rem;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  min-height: 42px;
  touch-action: manipulation;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--primary-ink);
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.28);
}

.btn-primary:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.36);
}

.btn-secondary {
  background: var(--secondary);
  border-color: #cad7ec;
  color: var(--secondary-ink);
}

.btn-secondary:hover {
  text-decoration: none;
  transform: translateY(-1px);
  border-color: #a8bddf;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.14);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger), var(--danger-strong));
  color: #fff3f3;
  box-shadow: 0 10px 20px rgba(153, 27, 27, 0.3);
}

.btn-danger:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-danger:disabled {
  opacity: 0.56;
  pointer-events: none;
  cursor: not-allowed;
}

.is-disabled,
.btn-secondary.is-disabled {
  opacity: 0.56;
  pointer-events: none;
  cursor: default;
}

.input,
.select,
textarea.input {
  width: 100%;
  border: 1px solid #bfd0ea;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-radius: 11px;
  padding: 0.62rem 0.72rem;
  font: inherit;
  line-height: 1.2;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
  min-height: 42px;
}

textarea.input {
  min-height: 100px;
}

.dark .input,
.dark .select,
.dark textarea.input {
  border-color: #2b4668;
  background: rgba(8, 16, 28, 0.9);
  color: var(--text);
}

.input:focus,
.select:focus,
textarea.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--focus);
}

.help {
  margin-top: 0.42rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
}

.table-scroll,
.overflow-x-auto {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll > .table,
.overflow-x-auto > .table {
  min-width: max-content;
}

.breakup-create-shell {
  max-width: 1680px;
  margin: 0 auto;
}

.breakup-intro-card,
.breakup-manual-card,
.breakup-main-card {
  width: 100%;
}

.breakup-create-shell .card {
  padding: 1rem 1rem 0.95rem;
}

.breakup-create-shell .font-bold.mb-3 {
  margin-bottom: 0.7rem;
}

.breakup-create-shell .help {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  line-height: 1.35;
}

.breakup-create-shell .input,
.breakup-create-shell .select,
.breakup-create-shell textarea.input {
  min-height: 38px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.breakup-create-shell .btn-primary,
.breakup-create-shell .btn-secondary,
.breakup-create-shell .btn-danger {
  min-height: 38px;
  padding: 0.48rem 0.82rem;
}

.breakup-manual-card .overflow-x-auto {
  padding-bottom: 0.25rem;
}

.app-main {
  width: 100%;
  min-width: 0;
}

.app-content {
  width: min(100%, 1540px);
  margin: 0 auto;
}

.responsive-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.responsive-header-main {
  min-width: 0;
  flex: 1 1 18rem;
}

.responsive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: end;
}

.responsive-filters > * {
  flex: 1 1 12rem;
  min-width: 0;
}

.responsive-filters > .filter-action {
  flex: 0 0 auto;
}

.responsive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.responsive-actions-end {
  justify-content: flex-end;
}

.responsive-actions-stretch > * {
  flex: 1 1 10rem;
}

.responsive-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.responsive-table > .table {
  min-width: var(--table-min-width, 720px);
}

.responsive-table-tight {
  --table-min-width: 640px;
}

.responsive-table-wide {
  --table-min-width: 980px;
}

.responsive-table-xl {
  --table-min-width: 1180px;
}

.access-admin-shell {
  max-width: 1820px;
  margin: 0 auto;
}

.access-wide-table {
  min-width: 1180px;
}

.access-role-form {
  min-width: 360px;
}

.access-search-form .input {
  min-width: 260px;
}

@media (min-width: 1280px) {
  .access-admin-card {
    padding: 1.25rem 1.35rem;
  }
}

@media (min-width: 1100px) {
  .breakup-create-shell .space-y-4 > * + * {
    margin-top: 0.85rem;
  }

  .breakup-main-card form.space-y-4 > * + * {
    margin-top: 0.85rem;
  }

  .breakup-manual-card form.space-y-3 > * + * {
    margin-top: 0.65rem;
  }

  .breakup-import-grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1.65fr) minmax(210px, 0.7fr) !important;
  }

  .breakup-import-grid > .md\:col-span-3 {
    grid-column: 1 / span 2 !important;
  }

  .breakup-bulk-grid {
    grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.5fr) minmax(220px, 0.7fr) !important;
  }

  .breakup-bulk-grid > .md\:col-span-2 {
    grid-column: auto !important;
  }

  .breakup-main-card .grid.md\:grid-cols-4,
  .breakup-main-card [data-type-section] .grid.md\:grid-cols-4 {
    gap: 0.85rem !important;
  }
}

.dark .table {
  background: rgba(7, 14, 23, 0.7);
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 0.72rem 0.8rem;
  text-align: left;
  font-size: 0.85rem;
  vertical-align: middle;
}

.table tr:last-child td {
  border-bottom: 0;
}

.table thead th {
  background: rgba(132, 168, 224, 0.12);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #334155;
}

.dark .table thead th {
  background: rgba(42, 67, 102, 0.25);
  color: #c8d4e8;
}

.badge-ok,
.badge-warn {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-ok {
  background: rgba(16, 185, 129, 0.16);
  color: #047857;
}

.badge-warn {
  background: rgba(239, 68, 68, 0.18);
  color: #b91c1c;
}

@media (max-width: 767px) {
  .min-h-full {
    min-height: calc(var(--app-vh, 1vh) * 100);
    min-height: 100dvh;
  }

  body.sidebar-open {
    overflow: hidden;
    touch-action: none;
  }

  .app-shell {
    display: block;
  }

  .page-width {
    width: 100%;
  }

  .app-content {
    width: 100%;
  }

  .breakup-create-shell {
    max-width: 100%;
  }

  .access-admin-shell {
    max-width: 100%;
  }

  .access-wide-table {
    min-width: 980px;
  }

  .app-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(84vw, 320px);
    max-height: 100dvh;
    transform: translateX(-110%);
    transition: transform 0.24s ease;
    box-shadow: var(--shadow-lg);
    z-index: 40;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .dark .app-sidebar {
    background: rgba(9, 16, 29, 0.98);
  }

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

  .sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 30;
  }

  body.sidebar-open .sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  main {
    max-width: 100%;
    overflow-x: hidden;
  }

  header.no-print > .flex.items-center.justify-between {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .topbar-left,
  .topbar-actions,
  header.no-print > .flex.items-center.justify-between > div:last-child {
    width: 100%;
    flex-wrap: wrap;
  }

  .topbar-actions,
  header.no-print > .flex.items-center.justify-between > div:last-child {
    justify-content: flex-start;
  }

  .topbar-actions > * {
    width: 100%;
  }

  .topbar-actions .btn-primary,
  .topbar-actions .btn-secondary {
    justify-content: center;
  }

  .input,
  .select,
  textarea.input {
    font-size: 16px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-danger {
    min-height: 44px;
  }

  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .card {
    padding: 0.95rem;
  }

  .responsive-header {
    align-items: stretch;
    gap: 0.75rem;
  }

  .responsive-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .responsive-filters > *,
  .responsive-filters > .filter-action {
    flex: 1 1 auto;
    width: 100%;
  }

  .responsive-actions {
    align-items: stretch;
  }

  .responsive-actions-end {
    justify-content: flex-start;
  }

  .responsive-actions-stretch > * {
    width: 100%;
    flex-basis: 100%;
  }

  .responsive-table > .table {
    min-width: max(var(--table-min-width, 720px), 100%);
  }

  .responsive-table .table th,
  .responsive-table .table td {
    padding: 0.62rem 0.68rem;
  }

  .table th,
  .table td {
    padding: 0.62rem 0.68rem;
    font-size: 0.8rem;
  }

  .text-2xl {
    font-size: 1.45rem;
  }
}

@supports (padding: max(0px)) {
  body {
    padding-left: max(env(safe-area-inset-left), 0px);
    padding-right: max(env(safe-area-inset-right), 0px);
  }

  header.no-print {
    padding-top: max(env(safe-area-inset-top), 0px);
  }

  .mobile-nav {
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  }
}

@media print {
  @page {
    size: auto;
    margin: 8mm;
  }

  html,
  body,
  .h-full,
  .min-h-full {
    height: auto !important;
    min-height: 0 !important;
  }

  body {
    background: #fff !important;
    color: #111 !important;
  }

  body::before {
    display: none;
  }

  .no-print {
    display: none !important;
  }

  .min-h-full > .flex {
    display: block !important;
  }

  .app-shell {
    display: block !important;
    min-height: auto !important;
  }

  .app-sidebar,
  .sidebar-backdrop {
    display: none !important;
  }

  .flex-1 {
    width: 100% !important;
    display: block !important;
  }

  main {
    overflow: visible !important;
    padding: 0 !important;
  }

  .card,
  .table {
    box-shadow: none !important;
    border-color: #ddd !important;
    background: #fff !important;
  }

  .card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    break-inside: avoid-page;
    page-break-inside: avoid;
  }

  .print-break-allow {
    break-inside: auto !important;
    page-break-inside: auto !important;
  }

  .print-shell .space-y-4 > * + * {
    margin-top: 0.35rem !important;
  }

  .print-shell .card {
    padding: 0.7rem !important;
  }

  .print-shell .print-head-card .text-xl {
    font-size: 1.2rem !important;
    line-height: 1.25 !important;
  }

  .print-shell .print-head-card .text-sm {
    font-size: 0.73rem !important;
    line-height: 1.25 !important;
  }

  .print-shell .table th,
  .print-shell .table td {
    padding: 0.32rem 0.42rem !important;
    font-size: 0.7rem !important;
    line-height: 1.25 !important;
  }

  .print-shell .table thead th {
    font-size: 0.62rem !important;
  }

  .card::after {
    display: none !important;
  }

  .grid {
    display: block !important;
  }

  .grid > * {
    margin-bottom: 0.6rem !important;
  }

  .table {
    overflow: visible !important;
    border-collapse: collapse !important;
  }

  .table tr,
  .table td,
  .table th {
    break-inside: avoid-page;
    page-break-inside: avoid;
  }

  a {
    color: #111 !important;
    text-decoration: none !important;
  }
}

/* Utilities */
.hidden { display: none !important; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

.h-full { height: 100%; }
.min-h-full { min-height: 100%; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-64 { width: 16rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.rounded-xl { border-radius: var(--radius-md); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 999px; }

.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-0 { padding-left: 0; padding-right: 0; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.pt-4 { padding-top: 1rem; }
.pb-4 { padding-bottom: 1rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-auto { margin-top: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.border { border: 1px solid var(--line); }
.border-t { border-top: 1px solid var(--line); }
.border-r { border-right: 1px solid var(--line); }
.border-b { border-bottom: 1px solid var(--line); }

.border-slate-200 { border-color: #d9e2f2; }
.border-emerald-200 { border-color: #a7f3d0; }

.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-white { background-color: #ffffff; }
.bg-white\/70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.6rem; line-height: 1.2; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.tracking-tight { letter-spacing: -0.02em; }

.text-right { text-align: right; }
.text-center { text-align: center; }
.break-all { word-break: break-all; }

.text-slate-900 { color: #0f172a; }
.text-slate-600 { color: #475569; }
.text-slate-500 { color: #64748b; }
.text-slate-300 { color: #cbd5e1; }
.text-indigo-600 { color: #4f46e5; }
.text-emerald-700 { color: #047857; }
.text-emerald-800 { color: #065f46; }
.text-rose-700 { color: #be123c; }

.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; text-decoration: none; }

.sticky { position: sticky; }
.top-0 { top: 0; }
.z-10 { z-index: 10; }
.backdrop-blur { backdrop-filter: blur(10px); }

/* Keep .no-print neutral on screen; print hiding is handled in @media print. */
.no-print { }

/* Dark variants */
.dark .dark\:bg-slate-950 { background-color: #020617; }
.dark .dark\:bg-slate-900 { background-color: #0f172a; }
.dark .dark\:bg-slate-900\/70 { background-color: rgba(15, 23, 42, 0.7); }
.dark .dark\:text-slate-100 { color: #f1f5f9; }
.dark .dark\:text-slate-300 { color: #cbd5e1; }
.dark .dark\:border-slate-800 { border-color: #1e293b; }
.dark .dark\:hover\:bg-slate-800:hover { background-color: #1e293b; text-decoration: none; }

@media (min-width: 768px) {
  .md\:hidden { display: none !important; }
  .md\:block { display: block !important; }
  .md\:flex { display: flex !important; }
  .md\:w-64 { width: 16rem !important; }
  .md\:flex-col { flex-direction: column !important; }
  .md\:p-6 { padding: 1.5rem !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
}
