:root {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color-scheme: light;
  --brand-deepBlue: #003b50;
  --brand-warmBlue: #028a93;
  --brand-skyBlue: #b6e5f7;
  --brand-terracotta: #c34f33;
  --brand-warmOchre: #d8af54;
  --brand-burntGold: #b47a1b;
  --brand-forestGreen: #14746f;
  --brand-stoneGray: #53606a;
  --brand-ivory: #f8fbf3;
}

body {
  margin: 0;
  font-family: inherit;
  color: var(--brand-deepBlue);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(2, 138, 147, 0.18) 0%, rgba(2, 138, 147, 0) 60%),
    radial-gradient(110% 110% at 100% 100%, rgba(195, 79, 51, 0.12) 0%, rgba(195, 79, 51, 0) 55%),
    linear-gradient(180deg, rgba(182, 229, 247, 0.32) 0%, rgba(248, 251, 243, 0) 42%),
    var(--brand-ivory);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  z-index: 0;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/assets/logotiposoficialesmonnry-01.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(90vw, 1950px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

::selection {
  background: rgba(2, 138, 147, 0.35);
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.brand-page {
  position: relative;
  z-index: 0;
}

.brand-page::after,
.brand-page::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
}

.brand-page::before {
  width: 400px;
  height: 400px;
  left: 10%;
  top: 5%;
  background: rgba(2, 138, 147, 0.35);
}

.brand-page::after {
  width: 420px;
  height: 420px;
  right: 0;
  bottom: 0;
  background: rgba(195, 79, 51, 0.22);
}

.card,
.glass-card {
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid rgba(2, 138, 147, 0.15);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 243, 0.85));
  box-shadow: 0 25px 65px rgba(0, 59, 80, 0.15);
  backdrop-filter: blur(16px);
}

.brand-surface {
  position: relative;
  border-radius: 28px;
  padding: 2.5rem;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(0, 59, 80, 0.92), rgba(2, 138, 147, 0.9));
  color: #fff;
}

.brand-surface::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 80% 20%, rgba(216, 175, 84, 0.45), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.brand-surface > * {
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(182, 229, 247, 0.3);
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-deepBlue);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 5px 20px rgba(2, 138, 147, 0.1);
  backdrop-filter: blur(12px);
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.85);
}

.btn:focus-visible {
  outline: 2px solid rgba(2, 138, 147, 0.6);
  outline-offset: 2px;
}

.btn-primary {
  border-color: transparent;
  color: #fff;
  background-image: linear-gradient(135deg, #003b50 0%, #028a93 55%, #110a01 100%);
}

.btn-primary:hover {
  background-image: linear-gradient(135deg, #028a93 0%, #003b50 55%, #110a01 100%);
}

.btn-ghost {
  border-color: transparent;
  background: rgba(182, 229, 247, 0.2);
  color: var(--brand-deepBlue);
}

.btn-secondary {
  border-color: rgba(2, 138, 147, 0.25);
  background: rgba(2, 138, 147, 0.08);
  color: var(--brand-forestGreen);
  box-shadow: 0 10px 25px rgba(2, 138, 147, 0.15);
}

.btn-secondary:hover {
  background: rgba(2, 138, 147, 0.14);
}

.btn-danger {
  border-color: transparent;
  color: #fff;
  background-image: linear-gradient(135deg, rgba(195, 79, 51, 0.95), rgba(195, 79, 51, 0.85));
  box-shadow: 0 15px 30px rgba(195, 79, 51, 0.25);
}

.badge,
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(182, 229, 247, 0.4);
  background: rgba(182, 229, 247, 0.15);
  color: var(--brand-deepBlue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.badge-subtle {
  background: rgba(2, 138, 147, 0.08);
  border-color: rgba(2, 138, 147, 0.18);
  color: var(--brand-forestGreen);
}

.status-badge-online {
  background: rgba(20, 116, 111, 0.15);
  border-color: rgba(20, 116, 111, 0.3);
  color: var(--brand-forestGreen);
}

.status-badge-loading,
.status-badge-offline {
  background: rgba(216, 175, 84, 0.2);
  border-color: rgba(216, 175, 84, 0.35);
  color: var(--brand-burntGold);
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.live-card {
  position: relative;
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(2, 138, 147, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 243, 0.85));
  box-shadow: 0 18px 45px rgba(0, 59, 80, 0.12);
  overflow: hidden;
}

.live-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 10% 10%, rgba(182, 229, 247, 0.3), transparent 45%);
  pointer-events: none;
}

.live-card.working::after {
  background: radial-gradient(120% 100% at 12% 12%, rgba(20, 116, 111, 0.18), transparent 55%);
}

.live-card.lunch::after {
  background: radial-gradient(120% 100% at 12% 12%, rgba(216, 175, 84, 0.25), transparent 55%);
}

.live-card.coffee::after {
  background: radial-gradient(120% 100% at 12% 12%, rgba(195, 79, 51, 0.18), transparent 55%);
}

.live-card.offline::after {
  background: radial-gradient(120% 100% at 12% 12%, rgba(83, 96, 106, 0.22), transparent 55%);
}

.live-card.idle::after {
  background: radial-gradient(120% 100% at 12% 12%, rgba(182, 229, 247, 0.22), transparent 55%);
}

.live-card__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.live-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #003b50, #028a93);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 10px 25px rgba(0, 59, 80, 0.18);
}

.live-card__title h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-deepBlue);
}

.live-card__title p {
  margin: 0.2rem 0 0;
  color: var(--brand-stoneGray);
  font-size: 0.9rem;
}

.live-card__timer {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand-deepBlue);
  margin: 0.5rem 0;
}

.live-card__meta {
  margin: 0;
  color: var(--brand-stoneGray);
  font-size: 0.95rem;
}

.live-card__breaks {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.break-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(2, 138, 147, 0.14);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(182, 229, 247, 0.24);
  color: var(--brand-deepBlue);
}

.break-pill::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}

.break-pill--taken {
  color: var(--brand-forestGreen);
  background: rgba(20, 116, 111, 0.1);
  border-color: rgba(20, 116, 111, 0.2);
}

.break-pill--pending {
  color: var(--brand-stoneGray);
  background: rgba(182, 229, 247, 0.2);
  border-color: rgba(182, 229, 247, 0.35);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  background: rgba(182, 229, 247, 0.35);
  color: var(--brand-deepBlue);
  border: 1px solid rgba(2, 138, 147, 0.15);
}

.live-pill::before {
  content: '';
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
}

.pill-working {
  color: var(--brand-forestGreen);
  background: rgba(20, 116, 111, 0.12);
}

.pill-lunch {
  color: var(--brand-burntGold);
  background: rgba(216, 175, 84, 0.15);
}

.pill-coffee {
  color: var(--brand-terracotta);
  background: rgba(195, 79, 51, 0.14);
}

.pill-offline {
  color: var(--brand-stoneGray);
  background: rgba(83, 96, 106, 0.1);
}

.pill-idle {
  color: var(--brand-warmBlue);
  background: rgba(182, 229, 247, 0.35);
}

.live-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  background: rgba(0, 59, 80, 0.04);
  border: 1px solid rgba(2, 138, 147, 0.1);
}

.legend-working { color: var(--brand-forestGreen); }
.legend-lunch { color: var(--brand-burntGold); }
.legend-coffee { color: var(--brand-terracotta); }
.legend-offline { color: var(--brand-stoneGray); }
.legend-idle { color: var(--brand-warmBlue); }

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-forestGreen);
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(20, 116, 111, 0.25);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.status-badge-error {
  background: rgba(195, 79, 51, 0.15);
  border-color: rgba(195, 79, 51, 0.3);
  color: var(--brand-terracotta);
}

.input {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(2, 138, 147, 0.2);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.85rem 1rem;
  color: var(--brand-deepBlue);
  font-size: 1rem;
  box-shadow: inset 0 1px 3px rgba(0, 59, 80, 0.1);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.select {
  min-width: 12rem;
  border-radius: 14px;
  border: 1px solid rgba(2, 138, 147, 0.2);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.65rem 0.9rem;
  color: var(--brand-deepBlue);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 59, 80, 0.12);
}

.select:focus {
  outline: none;
  border-color: var(--brand-warmBlue);
  box-shadow: 0 0 0 2px rgba(2, 138, 147, 0.25);
}

.filter-control {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.filter-control::after {
  content: '▼';
  position: absolute;
  right: 0.85rem;
  color: rgba(0, 59, 80, 0.5);
  font-size: 0.75rem;
  pointer-events: none;
}

.input-multiselect {
  min-height: 10rem;
  padding: 0.75rem;
}

.input-multiselect option {
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
}

.input::placeholder {
  color: rgba(83, 96, 106, 0.7);
}

.input:focus {
  border-color: var(--brand-warmBlue);
  outline: none;
  box-shadow: 0 0 0 2px rgba(2, 138, 147, 0.2);
}

.label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--brand-stoneGray);
  text-transform: uppercase;
}

.checkbox {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(2, 138, 147, 0.35);
  background: rgba(255, 255, 255, 0.9);
  accent-color: var(--brand-warmBlue);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  border-radius: 0.85rem;
  font-size: 0.85rem;
}

.status-btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(2, 138, 147, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand-deepBlue);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 150ms ease, border 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 10px 25px rgba(2, 138, 147, 0.15);
}

.status-btn::after {
  content: '↗';
  font-size: 0.85rem;
  color: rgba(0, 59, 80, 0.65);
}

.status-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 138, 147, 0.35);
  box-shadow: 0 15px 30px rgba(2, 138, 147, 0.2);
}

.status-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.status-message {
  min-height: 1.5rem;
  color: var(--brand-forestGreen);
}

.status-message--error {
  color: var(--brand-terracotta);
}

.status-message--success {
  color: var(--brand-forestGreen);
}

.camera-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(2, 138, 147, 0.2);
  box-shadow: 0 30px 70px rgba(0, 59, 80, 0.35);
}

.camera-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 59, 80, 0.85);
  color: #fff;
  text-align: center;
  padding: 1rem;
}

video,
#lastPhoto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.admin-modal-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  background: rgba(0, 59, 80, 0.92);
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.admin-modal-card .input {
  background: rgba(255, 255, 255, 0.95);
}

.admin-error {
  border-radius: 20px;
  border: 1px solid rgba(195, 79, 51, 0.4);
  background: rgba(195, 79, 51, 0.12);
  color: var(--brand-terracotta);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--brand-deepBlue);
}

.table-frame {
  border: 1px solid rgba(2, 138, 147, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.table-scroll {
  overflow: auto;
  max-height: clamp(360px, 65vh, 780px);
  border-radius: 20px;
  scrollbar-color: rgba(2, 138, 147, 0.4) rgba(182, 229, 247, 0.2);
  scrollbar-width: thin;
}

.table-scroll .data-table {
  min-width: 720px;
  background: rgba(255, 255, 255, 0.9);
}

.table-scroll::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

.table-scroll::-webkit-scrollbar-thumb {
  background: rgba(2, 138, 147, 0.4);
  border-radius: 999px;
}

.table-scroll::-webkit-scrollbar-track {
  background: rgba(182, 229, 247, 0.2);
}

.table-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-top: 1px solid rgba(2, 138, 147, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.table-meta .btn {
  padding: 0.55rem 1rem;
}

.data-table thead th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(83, 96, 106, 0.9);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(248, 251, 243, 0.96), rgba(255, 255, 255, 0.88));
}

.data-table tbody td {
  padding: 1rem;
  border-top: 1px solid rgba(2, 138, 147, 0.12);
}

.empty-state {
  border: 1px dashed rgba(2, 138, 147, 0.3);
  border-radius: 24px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: rgba(83, 96, 106, 0.9);
  background: rgba(255, 255, 255, 0.8);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.status-chip--alert {
  box-shadow: 0 0 0 1px rgba(195, 79, 51, 0.25);
}

.status-chip.entry {
  border-color: rgba(20, 116, 111, 0.4);
  background: rgba(20, 116, 111, 0.15);
  color: var(--brand-forestGreen);
}

.status-chip.exit {
  border-color: rgba(195, 79, 51, 0.4);
  background: rgba(195, 79, 51, 0.15);
  color: var(--brand-terracotta);
}

.status-chip.break {
  border-color: rgba(216, 175, 84, 0.35);
  background: rgba(216, 175, 84, 0.2);
  color: var(--brand-burntGold);
}

.status-chip.coffee {
  border-color: rgba(182, 229, 247, 0.35);
  background: rgba(182, 229, 247, 0.25);
  color: var(--brand-warmBlue);
}

.status-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 999px;
  border: 1px solid rgba(2, 138, 147, 0.2);
  background: rgba(255, 255, 255, 0.8);
}

.status-indicator--warning {
  border-color: rgba(216, 175, 84, 0.45);
  background: rgba(216, 175, 84, 0.18);
  color: var(--brand-burntGold);
}

.status-indicator--danger {
  border-color: rgba(195, 79, 51, 0.45);
  background: rgba(195, 79, 51, 0.18);
  color: var(--brand-terracotta);
}

.has-status-warning {
  background: rgba(248, 251, 243, 0.65);
}

.last-entry-card {
  border-radius: 20px;
  border: 1px solid rgba(2, 138, 147, 0.15);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.85);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 50;
}

.modal.hidden {
  display: none;
}


.summary-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.summary-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.summary-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}

.summary-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.summary-panel--highlight {
  box-shadow: 0 20px 60px rgba(2, 138, 147, 0.22), 0 0 0 2px rgba(2, 138, 147, 0.18);
  transition: box-shadow 200ms ease;
}

.summary-section {
  border: 1px solid rgba(2, 138, 147, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 30px rgba(0, 59, 80, 0.12);
  padding: 1rem;
}

.summary-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.75rem;
}

.summary-meta {
  text-align: right;
  font-size: 0.85rem;
  color: var(--brand-stoneGray);
}

.summary-table-wrapper {
  overflow-x: auto;
  overflow-y: auto;
  border-radius: 16px;
  border: 1px solid rgba(2, 138, 147, 0.1);
  background: rgba(248, 251, 243, 0.55);
  max-height: 420px;
}

.summary-table-wrapper table thead th {
  white-space: nowrap;
}

.summary-pagination {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-end;
  padding: 0.75rem 0.5rem 0 0.5rem;
}

.summary-pagination .btn {
  min-width: 6.5rem;
}

.summary-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(2, 138, 147, 0.12);
  color: var(--brand-deepBlue);
  font-weight: 600;
  font-size: 0.85rem;
}

.projection-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(2, 138, 147, 0.15);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(0, 59, 80, 0.08);
}

.projection-dates {
  margin: 0;
  font-weight: 700;
  color: var(--brand-deepBlue);
}

.projection-hours {
  margin: 0.15rem 0 0;
  color: var(--brand-stoneGray);
  font-weight: 600;
}

.projection-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.summary-chip--ok {
  background: rgba(20, 116, 111, 0.12);
  color: var(--brand-forestGreen);
}

.summary-chip--warn {
  background: rgba(216, 175, 84, 0.18);
  color: var(--brand-burntGold);
}

.summary-chip--alert {
  background: rgba(195, 79, 51, 0.18);
  color: var(--brand-terracotta);
}
