/*
 * โทนสีตามพาเลตที่ผู้ใช้ให้ (ฟ้าอ่อน / น้ำเงินเข้ม / ขาว / เหลือง)
 */
:root {
  --brand-1: #155e8a; /* น้ำเงินเข้ม */
  --brand-light: #a9dbff; /* ฟ้าอ่อน */
  --brand-2: #ffd15a; /* เหลือง */
  --surface: #ffffff;
  --surface-2: #f0f7ff; /* พื้นหลังฟ้าอ่อนมาก */
  --text-1: #102a43;
  --text-2: #486581;
  --border: rgba(16, 42, 67, 0.14);
  --shadow: 0 18px 55px rgba(21, 94, 138, 0.14);
}

html[data-theme="dark"] {
  --surface: #0b1020;
  --surface-2: #0f172a;
  --text-1: #e2e8f0;
  --text-2: rgba(226, 232, 240, 0.72);
  --border: rgba(226, 232, 240, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

body {
  color: var(--text-1);
  background: radial-gradient(1200px 600px at 10% -10%, color-mix(in srgb, var(--brand-1) 18%, transparent), transparent 50%),
    radial-gradient(900px 500px at 90% 0%, color-mix(in srgb, var(--brand-2) 16%, transparent), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}

body.site-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.site-layout > #main {
  flex: 1 0 auto;
}

/* Hero — พื้นหลังสีน้ำเงินทึบ */
.app-hero--gradient {
  background: #0f5f92;
  color: rgba(255, 255, 255, 0.96);
}

.app-hero--gradient h1,
.app-hero--gradient .display-5 {
  color: #fff;
}

.app-hero--gradient .app-gradient-text {
  color: #fff4cc;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.app-hero--gradient .app-muted,
.app-hero--gradient .lead {
  color: rgba(255, 255, 255, 0.88) !important;
}

.app-hero--gradient .text-body-secondary {
  color: rgba(255, 255, 255, 0.78) !important;
}

.app-hero--gradient .text-body {
  color: #fff !important;
}

.app-hero--gradient .app-badge {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.95);
}

.app-hero--gradient .app-kbd {
  background: rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.app-hero--gradient .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.app-hero--gradient .btn-ghost:hover,
.app-hero--gradient .btn-ghost:focus {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.app-hero--gradient .btn-link {
  color: rgba(255, 255, 255, 0.92) !important;
}

.app-hero--gradient .form-label {
  color: rgba(255, 255, 255, 0.92);
}

html[data-theme="dark"] .app-hero--gradient {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .app-hero--gradient .app-search-hero {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.app-surface {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

html[data-theme="dark"] .app-surface {
  background: rgba(11, 16, 32, 0.72);
}

.app-navbar {
  background: var(--brand-2);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.12);
  border-bottom: 0;
  backdrop-filter: none;

  /* Bootstrap navbar variables (โทนตามพาเลต) */
  --bs-navbar-color: color-mix(in srgb, var(--brand-1) 85%, black);
  --bs-navbar-hover-color: var(--brand-1);
  --bs-navbar-active-color: var(--brand-1);
  --bs-navbar-brand-color: var(--brand-1);
  --bs-navbar-brand-hover-color: color-mix(in srgb, var(--brand-1) 85%, black);
  --bs-navbar-toggler-border-color: color-mix(in srgb, var(--brand-1) 25%, transparent);
}

.app-navbar .app-brand {
  color: var(--brand-1);
}

html[data-theme="dark"] .app-navbar .app-brand {
  color: color-mix(in srgb, var(--brand-light) 70%, #ffffff);
}

.app-navbar .nav-link {
  border-radius: 10px;
}

.app-navbar .nav-link:hover,
.app-navbar .nav-link:focus {
  background: color-mix(in srgb, var(--brand-light) 35%, transparent);
}

.app-navbar .btn-ghost {
  border-color: color-mix(in srgb, var(--brand-1) 22%, transparent);
  background: color-mix(in srgb, var(--brand-light) 30%, transparent);
  color: color-mix(in srgb, var(--brand-1) 90%, black);
}

.app-navbar .btn-ghost:hover,
.app-navbar .btn-ghost:focus {
  background: color-mix(in srgb, var(--brand-light) 45%, transparent);
  color: var(--brand-1);
}

.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.app-brand img {
  height: 38px;
  width: auto;
}

.app-hero {
  padding: 80px 0 48px;
}

@media (min-width: 992px) {
  .app-hero {
    padding: 96px 0 64px;
  }
}

.app-hero-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--brand-light) 40%, var(--surface));
  color: var(--text-1);
}

html[data-theme="dark"] .app-hero-card {
  background: color-mix(in srgb, var(--brand-1) 18%, #0b1020);
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.9rem;
}

html[data-theme="dark"] .app-badge {
  background: rgba(11, 16, 32, 0.60);
}

.app-gradient-text {
  color: var(--brand-1);
}

.app-muted {
  color: var(--text-2);
}

.app-section {
  padding: 56px 0;
}

.app-section--muted {
  background-color: #f0f4f8;
}

html[data-theme="dark"] .app-section--muted {
  background-color: rgba(15, 23, 42, 0.35);
}

.app-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] .app-card {
  background: rgba(11, 16, 32, 0.70);
}

.app-import-dropzone {
  border: 2px dashed color-mix(in srgb, var(--brand-1) 38%, var(--border));
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 90%, var(--brand-light));
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.app-import-dropzone:hover {
  border-color: color-mix(in srgb, var(--brand-1) 55%, var(--border));
  background: color-mix(in srgb, var(--surface) 82%, var(--brand-light));
}

.app-import-dropzone:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--brand-light) 65%, transparent);
}

.app-import-dropzone.is-dragover {
  border-color: var(--brand-1);
  background: color-mix(in srgb, var(--brand-light) 40%, var(--surface));
}

.app-import-dropzone-title {
  font-weight: 600;
  color: var(--text-1);
}

html[data-theme="dark"] .app-import-dropzone {
  border-color: color-mix(in srgb, var(--brand-light) 42%, var(--border));
  background: color-mix(in srgb, var(--surface) 88%, var(--brand-1));
}

html[data-theme="dark"] .app-import-dropzone:hover,
html[data-theme="dark"] .app-import-dropzone.is-dragover {
  border-color: color-mix(in srgb, var(--brand-light) 72%, var(--border));
  background: color-mix(in srgb, var(--surface) 72%, var(--brand-1));
}

.app-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.60);
}

html[data-theme="dark"] .app-icon {
  background: rgba(11, 16, 32, 0.60);
}

.app-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.btn-brand {
  background: var(--brand-1);
  border: 0;
  color: white;
  box-shadow: 0 14px 35px color-mix(in srgb, var(--brand-1) 28%, transparent);
}

.btn-brand:hover,
.btn-brand:focus {
  background: color-mix(in srgb, var(--brand-1) 85%, black);
  color: white;
}

.btn-ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text-1);
}

html[data-theme="dark"] .btn-ghost {
  background: rgba(11, 16, 32, 0.55);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-1);
}

html[data-theme="dark"] .btn-ghost:hover,
html[data-theme="dark"] .btn-ghost:focus {
  background: rgba(11, 16, 32, 0.75);
}

.app-kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.85em;
  padding: 0.15rem 0.45rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}

html[data-theme="dark"] .app-kbd {
  background: rgba(11, 16, 32, 0.60);
}

/* Bootstrap utilities */
.text-body-secondary {
  color: var(--text-2) !important;
}

.app-tip {
  color: var(--text-2);
}

.app-tip-label {
  color: var(--brand-1);
}

/* โฟกัสฟอร์ม */
.form-control:focus,
.form-select:focus {
  border-color: var(--brand-1);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--brand-1) 22%, transparent);
}

/* —— Home (index) enhancements —— */

.app-section-tight {
  padding-top: 24px;
  padding-bottom: 24px;
}

.app-search-hero {
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .app-search-hero {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.app-search-input {
  border-radius: 14px;
}

.app-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.app-stat-tile {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  padding: 14px 16px;
  text-align: center;
}

html[data-theme="dark"] .app-stat-tile {
  background: rgba(11, 16, 32, 0.55);
}

.app-stat-tile-wide {
  grid-column: 1 / -1;
}

.app-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--brand-1);
}

.app-stat-value-sm {
  font-size: 1.35rem;
}

.app-stat-label {
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: 4px;
}

/* Mini bar chart in hero dashboard */
.app-mini-chart {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-mini-chart-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-mini-chart-label {
  flex: 0 0 130px;
  font-size: 0.8rem;
  color: var(--text-2);
}

.app-mini-chart-bar-wrap {
  flex: 1 1 auto;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.app-mini-chart-bar {
  height: 100%;
  width: calc(var(--percent, 0) * 1%);
  border-radius: inherit;
  background: var(--brand-1);
  transition: width 0.4s ease-out;
}

.app-mini-chart-bar--accent {
  background: var(--brand-2);
}

.app-mini-chart-bar--primary {
  background: var(--brand-1);
}

.app-mini-chart-value {
  flex: 0 0 auto;
  min-width: 60px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  color: var(--text-1);
}

.app-vertical-chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 205px;
}

.app-vertical-chart-item {
  text-decoration: none;
  color: var(--text-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.app-vertical-chart-bar-wrap {
  width: 100%;
  max-width: 36px;
  height: 130px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
  display: flex;
  align-items: flex-end;
  padding: 3px;
}

html[data-theme="dark"] .app-vertical-chart-bar-wrap {
  background: rgba(11, 16, 32, 0.62);
}

.app-vertical-chart-bar {
  width: 100%;
  border-radius: 9px;
  min-height: 8px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.app-vertical-chart-item:hover .app-vertical-chart-bar,
.app-vertical-chart-item:focus .app-vertical-chart-bar {
  transform: translateY(-2px);
  opacity: 0.92;
}

.app-vertical-chart-value {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-1);
}

.app-vertical-chart-label {
  font-size: 0.72rem;
  color: var(--text-2);
  text-align: center;
  line-height: 1.15;
  min-height: 2.2em;
}

@media (max-width: 576px) {
  .app-vertical-chart {
    gap: 8px;
  }
  .app-vertical-chart-bar-wrap {
    max-width: 28px;
    height: 115px;
  }
}

.app-checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.app-checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--text-2);
}

.app-checklist li:last-child {
  margin-bottom: 0;
}

.app-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--brand-2);
}

.app-checklist a {
  font-weight: 600;
  color: var(--brand-1);
  text-decoration: none;
}

html[data-theme="dark"] .app-checklist a {
  color: color-mix(in srgb, var(--brand-1) 70%, #ffffff);
}

.app-checklist a:hover {
  text-decoration: underline;
}

.app-dept-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-dept-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text-1);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

html[data-theme="dark"] .app-dept-chip {
  background: rgba(11, 16, 32, 0.65);
}

.app-dept-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  color: var(--text-1);
}

html[data-theme="dark"] .app-dept-chip:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.app-dept-chip-count {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-1) 14%, transparent);
  color: var(--brand-1);
}

html[data-theme="dark"] .app-dept-chip-count {
  background: color-mix(in srgb, var(--brand-1) 20%, transparent);
  color: color-mix(in srgb, var(--brand-1) 70%, #ffffff);
}

.app-thesis-card {
  display: block;
  height: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

html[data-theme="dark"] .app-thesis-card {
  background: rgba(11, 16, 32, 0.72);
}

.app-thesis-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  border-color: color-mix(in srgb, var(--brand-1) 35%, transparent);
}

html[data-theme="dark"] .app-thesis-card:hover {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  border-color: color-mix(in srgb, var(--brand-1) 45%, transparent);
}

.app-thesis-card-inner {
  padding: 1.15rem 1.25rem 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-thesis-card-cta {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-1);
}

html[data-theme="dark"] .app-thesis-card-cta {
  color: color-mix(in srgb, var(--brand-1) 70%, #ffffff);
}

/* Search page composition */
.app-search-toolbar {
  margin-bottom: 1rem;
}

.app-search-filter-card .form-label {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.app-search-results-card .dataTables_wrapper .row {
  --bs-gutter-y: 0.75rem;
}

.app-search-results-card .dataTables_wrapper .dataTables_info {
  font-size: 0.85rem;
  color: var(--text-2);
}

.app-search-results-card .dataTables_filter input,
.app-search-results-card .dataTables_length select {
  border-radius: 10px;
}

.app-search-results-card .dataTables_filter {
  text-align: right;
}

.app-search-results-card .dataTables_filter label,
.app-search-results-card .dataTables_length label {
  font-size: 0.88rem;
  color: var(--text-2);
}

.app-search-results-card .table thead th {
  white-space: nowrap;
  border-bottom-width: 1px;
  background: rgba(15, 23, 42, 0.03);
  font-weight: 600;
}

.app-search-results-card .table tbody td {
  vertical-align: top;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

html[data-theme="dark"] .app-search-results-card .table thead th {
  background: rgba(226, 232, 240, 0.05);
}

.app-search-table td .fw-semibold {
  font-size: 0.95rem;
}

.app-search-results-card .pagination .page-link {
  border-radius: 10px;
  margin-left: 4px;
  border-color: var(--border);
}

.app-search-results-card .pagination .page-item.active .page-link {
  background: var(--brand-1);
  border-color: var(--brand-1);
}

/* Report page vertical charts */
.app-report-chart-scroll {
  overflow-x: auto;
  padding-bottom: 6px;
}

.app-report-vertical-chart {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(58px, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 230px;
  width: max-content;
  min-width: 100%;
}

.app-report-vertical-item {
  text-decoration: none;
  color: var(--text-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.app-report-vertical-bar-wrap {
  width: 100%;
  max-width: 40px;
  height: 145px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
  display: flex;
  align-items: flex-end;
  padding: 3px;
}

html[data-theme="dark"] .app-report-vertical-bar-wrap {
  background: rgba(11, 16, 32, 0.62);
}

.app-report-vertical-bar {
  width: 100%;
  min-height: 8px;
  border-radius: 9px;
  background: var(--brand-1);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.app-report-vertical-bar-dept {
  background: var(--brand-2);
}

.app-report-vertical-item:hover .app-report-vertical-bar,
.app-report-vertical-item:focus .app-report-vertical-bar {
  transform: translateY(-2px);
  opacity: 0.92;
}

.app-report-vertical-item.is-active .app-report-vertical-bar-wrap {
  border-color: color-mix(in srgb, var(--brand-1) 45%, var(--border));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand-1) 18%, transparent);
}

.app-report-vertical-value {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-1);
}

.app-report-vertical-label {
  font-size: 0.72rem;
  color: var(--text-2);
  text-align: center;
  line-height: 1.15;
  min-height: 2.2em;
}

.app-report-combined-chart {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(54px, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 250px;
  width: max-content;
  min-width: 100%;
}

.app-report-combined-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.app-report-combined-total {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-1);
}

.app-report-combined-wrap {
  width: 100%;
  max-width: 40px;
  height: 160px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.62);
  display: flex;
  align-items: flex-end;
}

html[data-theme="dark"] .app-report-combined-wrap {
  background: rgba(11, 16, 32, 0.62);
}

.app-report-combined-stack {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: 1px;
  border-radius: 9px;
  overflow: hidden;
}

.app-report-combined-seg {
  display: block;
  width: 100%;
}

.app-report-combined-seg:hover,
.app-report-combined-seg:focus {
  filter: brightness(0.92);
}

.app-report-combined-year {
  font-size: 0.72rem;
  color: var(--text-2);
  text-decoration: none;
}

.app-report-combined-item.is-active .app-report-combined-wrap {
  border-color: color-mix(in srgb, var(--brand-1) 45%, var(--border));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand-1) 18%, transparent);
}

.app-report-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  color: var(--text-1);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.6);
}

html[data-theme="dark"] .app-report-legend-item {
  background: rgba(11, 16, 32, 0.6);
}

.app-report-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.app-report-chart-canvas-wrap {
  position: relative;
  width: 100%;
  min-height: 420px;
}

@media (max-width: 768px) {
  .app-report-chart-canvas-wrap {
    min-height: 340px;
  }
}

@media (max-width: 991.98px) {
  .app-search-results-card .dataTables_filter {
    text-align: left;
  }
}

.app-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.app-pill-dp {
  background: color-mix(in srgb, var(--brand-1) 12%, transparent);
  color: var(--brand-1);
}

html[data-theme="dark"] .app-pill-dp {
  background: color-mix(in srgb, var(--brand-1) 18%, transparent);
  color: color-mix(in srgb, var(--brand-1) 70%, #ffffff);
}

.app-pill-year {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-2);
}

html[data-theme="dark"] .app-pill-year {
  background: rgba(226, 232, 240, 0.08);
  color: var(--text-2);
}

