/* ==========================================================================
   SERVICEplus — design system
   SERVICEplus is the Service Desk module of the IMSplus ecosystem, so this
   shares IMSplus's own visual language rather than inventing a separate
   one: deep navy as the primary brand color (nav, buttons, headings), a
   violet/purple accent reserved for identity — avatars, the profile card,
   role badges — plus the same green/amber/red status vocabulary, small-caps
   eyebrow labels, pill badges, and rounded (12-16px) surfaces. Bootstrap's
   grid/utilities/components still do the layout work — this file restyles
   their look, not their structure, so every existing page inherits it
   without being rewritten.
   ========================================================================== */

:root {
  --sp-bg: #F1F3F8;
  --sp-surface: #FFFFFF;
  --sp-border: #E6E9F0;
  --sp-text: #1A2233;
  --sp-muted: #6B7280;

  /* Primary = IMSplus navy (nav, buttons, headings, links). */
  --sp-primary: #1B3868;
  --sp-primary-dark: #122A52;
  --sp-primary-tint: #E7ECF6;
  --sp-gradient-start: #3E62A6;
  --sp-gradient-end: #122A52;

  /* Accent = IMSplus violet (avatars, identity/profile, "admin" pills). */
  --sp-accent: #6D3FA8;
  --sp-accent-dark: #4B2680;
  --sp-accent-gradient-start: #7C4DBE;
  --sp-accent-gradient-end: #4B2680;

  --sp-radius-lg: 20px;
  --sp-radius-md: 14px;
  --sp-radius-sm: 10px;
  --sp-shadow-sm: 0 1px 2px rgba(26, 34, 51, 0.06), 0 1px 8px rgba(26, 34, 51, 0.04);
  --sp-shadow-md: 0 10px 30px rgba(26, 34, 51, 0.10);

  --sp-violet: #6D3FA8;    --sp-violet-bg: #EDE7F8;
  --sp-blue: #3B82F6;      --sp-blue-bg: #E7F1FF;
  --sp-green: #16A34A;     --sp-green-bg: #DCFCE7;
  --sp-amber: #D97706;     --sp-amber-bg: #FEF3C7;
  --sp-red: #DC2626;       --sp-red-bg: #FEE2E2;
  --sp-pink: #EC4899;      --sp-pink-bg: #FDEAF3;
  --sp-teal: #0EA5A5;      --sp-teal-bg: #E3FAF7;
}

/* ---- Base ---- */

body {
  background: var(--sp-bg);
  color: var(--sp-text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 { letter-spacing: -0.01em; }

a { color: var(--sp-primary-dark); }
a:hover { color: var(--sp-primary); }

.text-muted { color: var(--sp-muted) !important; }

/* ---- Buttons ---- */

.btn-primary {
  background: var(--sp-primary);
  border-color: var(--sp-primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--sp-primary-dark);
  border-color: var(--sp-primary-dark);
}
.btn-outline-primary {
  color: var(--sp-primary-dark);
  border-color: var(--sp-primary);
}
.btn-outline-primary:hover {
  background: var(--sp-primary);
  border-color: var(--sp-primary);
}
.btn, .form-control, .form-select, .card, .alert, .badge {
  border-radius: var(--sp-radius-sm);
}
/* Bootstrap's nav-pills default to its own blue, independent of --sp-primary
   — override so the admin sub-nav stays on-brand. */
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: var(--sp-primary);
  color: #fff;
}
.nav-pills .nav-link { color: var(--sp-primary-dark); }

/* A handful of other Bootstrap defaults key off its own blue rather than
   --sp-primary — bring them on-brand too so no control on the page reverts
   to a different "system" blue. */
.form-control:focus, .form-select:focus {
  border-color: var(--sp-primary);
  box-shadow: 0 0 0 0.2rem rgba(27, 56, 104, 0.15);
}
.form-check-input:checked {
  background-color: var(--sp-primary);
  border-color: var(--sp-primary);
}
.form-check-input:focus {
  border-color: var(--sp-primary);
  box-shadow: 0 0 0 0.2rem rgba(27, 56, 104, 0.15);
}
.page-link { color: var(--sp-primary-dark); }
.page-item.active .page-link { background-color: var(--sp-primary); border-color: var(--sp-primary); }
.spinner-border.text-primary { color: var(--sp-primary) !important; }

/* ---- Cards ---- */

.card {
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-md);
  box-shadow: var(--sp-shadow-sm);
}
.card-header {
  border-radius: var(--sp-radius-md) var(--sp-radius-md) 0 0 !important;
  border-bottom: 1px solid var(--sp-border);
}

/* ---- Tables ---- */

.table thead th {
  color: var(--sp-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom-width: 1px;
}

/* ---- Badges (status pills) ---- */

.badge { font-weight: 600; letter-spacing: 0.01em; }
.badge-tier-1 { background-color: var(--sp-blue-bg); color: var(--sp-blue); }
.badge-tier-2 { background-color: var(--sp-amber-bg); color: var(--sp-amber); }
.badge-tier-3 { background-color: var(--sp-pink-bg); color: var(--sp-pink); }

/* ---- App shell: sidebar + topbar ----
   Operational area and Admin Console share this shell but render distinct
   sidebar content, so config/user-admin screens never mix into the same
   nav as tickets/procurement — only the "Admin Console" link bridges them. */

.sp-shell { display: flex; min-height: 100vh; }

.sp-sidebar {
  width: 252px;
  flex-shrink: 0;
  background: var(--sp-surface);
  border-right: 1px solid var(--sp-border);
  display: flex;
  flex-direction: column;
  padding: 1.1rem 0.9rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sp-sidebar-back {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sp-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.3rem 0.6rem 0.9rem;
}
.sp-sidebar-back:hover { color: var(--sp-primary-dark); }
.sp-sidebar-section { margin-top: 1.4rem; }
.sp-sidebar-section:first-of-type { margin-top: 0.6rem; }
.sp-sidebar-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sp-muted);
  font-weight: 700;
  padding: 0 0.6rem;
  margin-bottom: 0.35rem;
}
.sp-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--sp-radius-sm);
  color: var(--sp-text);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
}
.sp-sidebar-link:hover { background: var(--sp-bg); color: var(--sp-text); }
.sp-sidebar-link.active {
  background: var(--sp-primary-tint);
  color: var(--sp-primary-dark);
  font-weight: 600;
}
.sp-sidebar-link .sp-icon { flex-shrink: 0; }
.sp-sidebar-link .sp-notif-dot { top: 6px; right: 6px; }
.sp-sidebar-admin-cta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--sp-border);
}
.sp-sidebar-admin-cta .sp-sidebar-link {
  background: var(--sp-bg);
  font-weight: 600;
}
.sp-sidebar-admin-cta .sp-sidebar-link:hover { background: var(--sp-primary-tint); color: var(--sp-primary-dark); }

.sp-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.sp-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.5rem;
  background: var(--sp-surface);
  border-bottom: 1px solid var(--sp-border);
  position: sticky;
  top: 0;
  z-index: 20;
  transition: box-shadow 0.15s ease;
}
/* Toggled by JS once the page scrolls under the sticky topbar — separates it
   from content instead of the flat border alone. */
.sp-topbar.is-scrolled { box-shadow: var(--sp-shadow-sm); }
.sp-topbar-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--sp-text);
  padding: 0.3rem;
  border-radius: var(--sp-radius-sm);
}
.sp-topbar-search {
  flex: 1 1 0;
  min-width: 0;
  max-width: 440px;
  background: var(--sp-bg);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sp-topbar-search input {
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 0.88rem;
}
.sp-topbar-spacer { flex: 1; }
.sp-admin-banner {
  background: var(--sp-primary-tint);
  color: var(--sp-primary-dark);
  padding: 0.5rem 1.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sp-content { padding: 1.5rem; flex: 1; }

/* Sidebar becomes an off-canvas drawer below ~992px. */
@media (max-width: 991.98px) {
  .sp-sidebar {
    position: fixed;
    left: -272px;
    top: 0;
    z-index: 1050;
    box-shadow: var(--sp-shadow-md);
    transition: left 0.18s ease;
  }
  body.sp-sidebar-open .sp-sidebar { left: 0; }
  body.sp-sidebar-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(33, 31, 46, 0.35);
    z-index: 1040;
  }
  .sp-topbar-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

.sp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--sp-primary-dark) !important;
  letter-spacing: -0.01em;
}
/* IMSplus's own wordmark lockup — a small diamond glyph, no box — reused
   here rather than a boxed "S+" mark, so the two apps read as one suite. */
.sp-wordmark-glyph {
  color: var(--sp-primary);
  font-size: 1.1rem;
  line-height: 1;
}
.sp-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--sp-primary-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sp-primary);
  font-weight: 800;
  font-size: 0.95rem;
}
.sp-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sp-text);
  background: var(--sp-bg);
  position: relative;
}
.sp-icon-btn:hover { background: var(--sp-primary-tint); color: var(--sp-primary-dark); }
.sp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sp-accent-gradient-start), var(--sp-accent-gradient-end));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
/* Small role/identity pill next to the avatar (mirrors IMSplus's "Entity
   Admin" tag in its top bar). */
.sp-role-pill {
  background: var(--sp-violet-bg);
  color: var(--sp-violet);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.sp-notif-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #EF4444;
  border: 2px solid var(--sp-surface);
}

/* ---- Dashboard search (compact header) ---- */

.sp-dash-search {
  max-width: 480px;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--sp-shadow-sm);
}
.sp-dash-search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.95rem;
  background: transparent;
}
.sp-dash-search button {
  border: none;
  background: var(--sp-primary);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Profile card (dashboard) — mirrors IMSplus's own "Home" card:
   a violet gradient banner, avatar, name/role/dept, identity pill. ---- */

.sp-profile-card {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-md);
  overflow: hidden;
  box-shadow: var(--sp-shadow-sm);
}
.sp-profile-banner {
  height: 56px;
  background: linear-gradient(120deg, var(--sp-accent-gradient-start) 0%, var(--sp-accent-gradient-end) 100%);
}
.sp-profile-body { padding: 0 1.25rem 1.25rem; margin-top: -32px; }
.sp-profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sp-accent-gradient-start), var(--sp-accent-gradient-end));
  color: #fff;
  border: 3px solid var(--sp-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.sp-profile-name { font-weight: 700; font-size: 1.05rem; }
.sp-profile-meta { color: var(--sp-muted); font-size: 0.85rem; }
.sp-identity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--sp-green-bg);
  color: var(--sp-green);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

/* ---- Eyebrow labels + stat blocks (big-number KPI tiles, IMSplus style) ---- */

.sp-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--sp-muted);
  font-weight: 700;
}
.sp-stat-block {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-md);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--sp-shadow-sm);
  height: 100%;
}
.sp-stat-block .sp-stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--sp-text);
  line-height: 1.15;
  margin-bottom: 0.25rem;
}
.sp-stat-block.is-danger .sp-stat-value { color: var(--sp-red); }
.sp-stat-block.is-warning .sp-stat-value { color: var(--sp-amber); }

/* ---- Upcoming Deadlines widget (dashboard) — same visual family as the
   full Calendar page's "engagements" list, so the two feel like one
   feature rather than two unrelated screens. ---- */

.sp-deadline-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  border-radius: var(--sp-radius-sm);
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.6rem;
  text-decoration: none;
  color: var(--sp-text);
}
.sp-deadline-card:last-child { margin-bottom: 0; }
.sp-deadline-card:hover { filter: brightness(0.98); }
.sp-deadline-date {
  flex-shrink: 0;
  width: 46px;
  text-align: center;
}
.sp-deadline-date .d { font-size: 1.15rem; font-weight: 800; line-height: 1.1; display: block; }
.sp-deadline-date .m { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.sp-deadline-card.is-breached { background: var(--sp-red-bg); }
.sp-deadline-card.is-breached .sp-deadline-date { color: var(--sp-red); }
.sp-deadline-card.is-soon { background: var(--sp-amber-bg); }
.sp-deadline-card.is-soon .sp-deadline-date { color: var(--sp-amber); }
.sp-deadline-card.is-upcoming { background: var(--sp-blue-bg); }
.sp-deadline-card.is-upcoming .sp-deadline-date { color: var(--sp-blue); }
.sp-deadline-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sp-deadline-card.is-breached .sp-deadline-tag { color: var(--sp-red); }
.sp-deadline-card.is-soon .sp-deadline-tag { color: var(--sp-amber); }
.sp-deadline-card.is-upcoming .sp-deadline-tag { color: var(--sp-blue); }
.sp-deadline-card > span:last-child { min-width: 0; flex: 1 1 auto; }
.sp-deadline-title { font-weight: 700; font-size: 0.9rem; color: var(--sp-text); overflow-wrap: break-word; }
.sp-deadline-sub { color: var(--sp-muted); font-size: 0.78rem; overflow-wrap: break-word; }

/* ---- Team Workload (dashboard, agent/admin) ---- */

.sp-workload-row { display: flex; align-items: center; gap: 0.9rem; padding: 0.6rem 0; border-bottom: 1px solid var(--sp-border); }
.sp-workload-row:last-child { border-bottom: none; }
.sp-workload-row .flex-grow-1 { min-width: 0; }
.sp-workload-row .fw-semibold { overflow-wrap: break-word; }
.sp-workload-bar-track { flex: 1; height: 6px; border-radius: 999px; background: var(--sp-bg); overflow: hidden; }
.sp-workload-bar-fill { height: 100%; border-radius: 999px; }

/* ---- Service tiles (dashboard quick actions) ---- */

.sp-tile {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-md);
  padding: 1.1rem;
  text-decoration: none;
  color: var(--sp-text);
  height: 100%;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
.sp-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--sp-shadow-md);
  border-color: transparent;
  color: var(--sp-text);
}
.sp-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* The text column is a flex item too (its parent .sp-tile is a flex row) —
   without min-width:0 a flex item's floor is its content's natural width,
   so long titles/descriptions push past the card edge instead of wrapping.
   Matches whichever element is last (a div wrapping the title/desc, in
   practice), not just span, so a block-level text column still gets it. */
.sp-tile > *:last-child { min-width: 0; flex: 1 1 auto; }
.sp-tile-title { font-weight: 700; margin-bottom: 0.15rem; overflow-wrap: break-word; }
.sp-tile-desc { color: var(--sp-muted); font-size: 0.85rem; line-height: 1.35; overflow-wrap: break-word; }

.sp-accent-violet .sp-tile-icon { background: var(--sp-violet-bg); color: var(--sp-violet); }
.sp-accent-blue   .sp-tile-icon { background: var(--sp-blue-bg);   color: var(--sp-blue); }
.sp-accent-green  .sp-tile-icon { background: var(--sp-green-bg); color: var(--sp-green); }
.sp-accent-amber  .sp-tile-icon { background: var(--sp-amber-bg); color: var(--sp-amber); }
.sp-accent-pink   .sp-tile-icon { background: var(--sp-pink-bg);  color: var(--sp-pink); }
.sp-accent-teal   .sp-tile-icon { background: var(--sp-teal-bg);  color: var(--sp-teal); }

/* ---- Stat tiles ---- */

.sp-stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---- Misc ---- */

.sp-icon { display: inline-block; vertical-align: -4px; }
.sp-icon-flip { transform: scaleX(-1); }
.timeline-item { border-left: 2px solid var(--sp-border); padding-left: 1rem; margin-left: 0.25rem; padding-bottom: 1rem; }
.timeline-item:last-child { padding-bottom: 0; }
table.admin-table td { vertical-align: middle; }

.sp-section-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--sp-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---- Login / MFA — split screen, matching IMSplus's own sign-in page ---- */
.sp-login-shell {
  min-height: 100vh;
  display: flex;
}
.sp-login-side {
  flex: 1.1;
  min-height: 100vh;
  background: radial-gradient(circle at 15% 10%, var(--sp-gradient-start), var(--sp-gradient-end) 65%);
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp-login-side .sp-wordmark-glyph, .sp-login-side .sp-brand { color: #fff !important; }
.sp-login-side h1 { font-weight: 800; font-size: 2.2rem; line-height: 1.15; margin: 1.75rem 0 0.9rem; }
.sp-login-side p { color: rgba(255,255,255,0.78); max-width: 420px; font-size: 0.98rem; }
.sp-login-form-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--sp-surface);
}
.sp-login-card { width: 100%; max-width: 400px; }
.sp-login-card .form-control {
  background: var(--sp-primary-tint);
  border: 1px solid transparent;
}
.sp-login-card .form-control:focus {
  background: var(--sp-surface);
  border-color: var(--sp-primary);
  box-shadow: 0 0 0 0.2rem rgba(27, 56, 104, 0.12);
}
/* Narrow screens: stack the two halves instead of side-by-side. */
@media (max-width: 860px) {
  .sp-login-shell { flex-direction: column; }
  .sp-login-side { min-height: auto; padding: 2.5rem 1.75rem; }
  .sp-login-form-side { padding: 2.5rem 1.75rem; }
}

/* ---- Calendar page ---- */

.sp-cal-tabs {
  display: inline-flex;
  background: var(--sp-bg);
  border-radius: 999px;
  padding: 0.2rem;
  gap: 0.15rem;
}
.sp-cal-tabs a {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sp-muted);
  text-decoration: none;
}
.sp-cal-tabs a.active { background: var(--sp-surface); color: var(--sp-text); box-shadow: var(--sp-shadow-sm); }

.sp-cal-month-label { font-weight: 700; font-size: 0.95rem; text-align: center; margin-bottom: 0.75rem; }
.sp-cal-grid { width: 100%; border-collapse: collapse; }
.sp-cal-grid th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sp-muted);
  font-weight: 700;
  padding-bottom: 0.4rem;
  text-align: center;
}
.sp-cal-grid td {
  text-align: center;
  vertical-align: top;
  padding: 0.35rem 0.15rem;
  font-size: 0.82rem;
  color: var(--sp-text);
  width: 14.28%;
}
.sp-cal-day { display: inline-flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.sp-cal-day.is-today { background: var(--sp-primary-tint); border-radius: 8px; padding: 0.1rem 0.35rem; }
.sp-cal-dot-row { display: flex; align-items: center; gap: 0.2rem; font-size: 0.65rem; font-weight: 700; }
.sp-cal-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.sp-cal-dot.breached { background: var(--sp-red); color: var(--sp-red); }
.sp-cal-dot.soon { background: var(--sp-amber); color: var(--sp-amber); }
.sp-cal-dot.upcoming { background: var(--sp-blue); color: var(--sp-blue); }
.sp-cal-dot-row.breached { color: var(--sp-red); }
.sp-cal-dot-row.soon { color: var(--sp-amber); }
.sp-cal-dot-row.upcoming { color: var(--sp-blue); }
.sp-cal-dot.budget { background: var(--sp-violet); color: var(--sp-violet); }
.sp-cal-dot-row.budget { color: var(--sp-violet); }

.sp-status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; margin-right: 0.35rem; }
