/**
 * Original file: /npm/@exampledev/new.css@1.1.2/new.css
 * edited by: Sarah Zareski
 */
:root {
  --nc-font-sans:
    "Poppins", "Open Sans", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --nc-font-mono:
    Consolas, monaco, "Ubuntu Mono", "Liberation Mono", "Courier New", Courier,
    monospace;
  --nc-tx-1: #054b2d;
  --nc-tx-2: #052e1c;
  --nc-bg-1: #ffffff;
  --nc-bg-2: #f6f8fa;
  --nc-bg-3: #e5e7eb;
  --nc-lk-1: #437a45;
  --nc-lk-2: #539655;
  --nc-lk-tx: #ffffff;
  --nc-ac-1: #ffe4c3;
  --nc-ac-tx: #558740;

  /** sarah's custom table css colors */
  --table-bg-1: #ffecd4;
  --table-bg-2: #ffffff;
  --table-bg-header: #96b497;
  /** age demographic colors */
  --t-b-5-age: #fff6f0;
  --accentb-5-age: #fda573;
  --t-6-11-age: #fffcf3;
  --accent6-11-age: #ffd675;
  --t-12-16-age: #ffefef;
  --accent12-16-age: #e57979;
  --t-16up-age: #faf1ff;
  --accent16up-age: #c597df;
  --t-18up-age: #fafcff;
  --accent18up-age: #a2bce8;
  --t-intergen: #ffffff;
  --accentintergen: #437a45;
}

/** 
--nc-tx-1 - Text 
--nc-tx-2 - Secondary text
--nc-bg-1 - Primary background 
--nc-bg-2 - Secondary background 
--nc-bg-3 - Tertiary background 
--nc-lk-1 - Primary link color 
--nc-lk-2 - Secondary link color (for hover)
--nc-lk-tx - Link text 
--nc-ac-1 - Accent (for highlighting)
--nc-ac-tx - Accent text (for highlighting)

@media (prefers-color-scheme:dark) is declaring Dark mode overrides

 */

/**@media (prefers-color-scheme:dark){
    :root{
        --nc-tx-1:#ffffff;
        --nc-tx-2:#eeeeee;
        --nc-bg-1:#052e1c;
        --nc-bg-2:#063d25;
        --nc-bg-3:#054b2d;
        --nc-lk-1:#eda84f;
        --nc-lk-2:#539655;
        --nc-lk-tx:#FFFFFF;
        --nc-ac-1:#558740;
        --nc-ac-tx:#ffe4c3;
    }
}
    */
* {
  margin: 0;
  padding: 0;
}

address,
area,
article,
aside,
audio,
blockquote,
datalist,
details,
dl,
fieldset,
figure,
form,
iframe,
img,
input,
meter,
nav,
ol,
optgroup,
option,
output,
p,
pre,
progress,
ruby,
section,
table,
textarea,
ul,
video {
  margin-bottom: 1rem;
}

button,
html,
input,
select {
  font-family: var(--nc-font-sans);
}
body {
  width: 100%;
  padding: 2rem;
  border-radius: 6px;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
  background: var(--nc-bg-1);
  color: var(--nc-tx-2);
  font-size: 1.03rem;
  line-height: 1.5;
}
::selection {
  background: var(--nc-ac-1);
  color: var(--nc-ac-tx);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  color: var(--nc-tx-1);
  padding-top: 0.875rem;
}

h1,
h2,
h3 {
  color: var(--nc-tx-1);
  padding-bottom: 2px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--nc-bg-2);
}

h4,
h5,
h6 {
  margin-bottom: 0.3rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.85rem;
}

h3 {
  font-size: 1.55rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

a {
  color: var(--nc-lk-1);
}

a:hover {
  color: var(--nc-lk-2);
}

abbr:hover {
  cursor: help;
}

blockquote {
  padding: 1.5rem;
  background: var(--nc-bg-2);
  border-left: 5px solid var(--nc-bg-3);
}

abbr {
  cursor: help;
}

blockquote :last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

header {
  background: var(--nc-bg-2);
  border-bottom: 1px solid var(--nc-bg-3);
  padding: 2rem 1.5rem;
  margin: -2rem calc(0px - (50vw - 50%)) 2rem;
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

header h1,
header h2,
header h3 {
  padding-bottom: 0;
  border-bottom: 0;
}

header > :first-child {
  margin-top: 0;
  padding-top: 0;
}

header > :last-child {
  margin-bottom: 0;
}

a button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  font-size: 1rem;
  display: inline-block;
  padding: 6px 12px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background: var(--nc-lk-1);
  color: var(--nc-lk-tx);
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  color: var(--nc-lk-tx);
}

a button[disabled],
button[disabled],
input[type="button"][disabled],
input[type="reset"][disabled],
input[type="submit"][disabled] {
  cursor: default;
  opacity: 0.5;
  cursor: not-allowed;
}

.button:focus,
.button:hover,
button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
  background: var(--nc-lk-2);
}

code,
kbd,
pre,
samp {
  font-family: var(--nc-font-mono);
}

code,
kbd,
pre,
samp {
  background: var(--nc-bg-2);
  border: 1px solid var(--nc-bg-3);
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 0.9rem;
}

kbd {
  border-bottom: 3px solid var(--nc-bg-3);
}

pre {
  padding: 1rem 1.4rem;
  max-width: 100%;
  overflow: auto;
}

pre code {
  background: inherit;
  font-size: inherit;
  color: inherit;
  border: 0;
  padding: 0;
  margin: 0;
}

code pre {
  display: inline;
  background: inherit;
  font-size: inherit;
  color: inherit;
  border: 0;
  padding: 0;
  margin: 0;
}

details {
  padding: 0.6rem 1rem;
  background: var(--nc-bg-2);
  border: 1px solid var(--nc-bg-3);
  border-radius: 4px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details[open] {
  padding-bottom: 0.75rem;
}

details[open] summary {
  margin-bottom: 6px;
}

details[open] > :last-child {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd::before {
  content: "→ ";
}

hr {
  border: 0;
  border-bottom: 1px solid var(--nc-bg-3);
  margin: 1rem auto;
}

fieldset {
  margin-top: 1rem;
  padding: 2rem;
  border: 1px solid var(--nc-bg-3);
  border-radius: 4px;
}

legend {
  padding: auto 0.5rem;
}

/** table styling */

table {
  border-collapse: collapse;
  width: 100%;
}

/** table cells */
td {
  border: 5px solid var(--table-bg-2);
  background: var(--table-bg-1);
  vertical-align: top;
  text-align: left;
  padding: 0.5rem;
}

/** table header */
th {
  background: var(--table-bg-header);
  border: 5px solid var(--table-bg-2);
  text-align: center;
  font-family: "Poppins", "Open Sans", sans-serif;
  font-weight: 700;
  padding: 0.5rem;
  min-height: 1.5rem;
  min-width: 6rem;
}

/** table striping */
tr:nth-child(2n) {
  background: var(--table-bg-1);
}

table caption {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/** end table styling */

/** Event item styling -------------------------------------------------------------------------------*/
.event-item {
  background-color: #e8f4f8;
  border-left: 0.8rem solid #437a45; /* default color */
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 2px;
  font-size: 0.85rem;
}

/* modifiers for categories/age groups */
.babies {
  background-color: var(--t-b-5-age);
  border-left-color: var(--accentb-5-age);
}
.teens {
  background-color: var(--t-16up-age);
  border-left-color: var(--accent16up-age);
}
.kids {
  background-color: var(--t-6-11-age);
  border-left-color: var(--accent6-11-age);
}
.tweens {
  background-color: var(--t-12-16-age);
  border-left-color: var(--accent12-16-age);
}
.adult {
  background-color: var(--t-18up-age);
  border-left-color: var(--accent18up-age);
}
.intergen {
  background-color: var(--t-intergen);
  border-left-color: var(--accentintergen);
}
/* add other category classes as needed */

.event-summary {
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 0.3rem;
  word-wrap: break-word;
}

.event-summary :hover {
  text-decoration: underline;
  color: #437a45;
  cursor: pointer;
}

.event-summary a {
  color: #000000;
  text-decoration: none;
}

.event-summary a:hover {
  text-decoration: underline;
  color: #437a45;
}

.event-time {
  font-weight: 500;
  color: #2a2a2a;
  line-height: 1.2;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.event-description {
  color: #000000;
  line-height: 1.1;
  word-wrap: break-word;
  font-size: 0.7rem;
  max-height: 0; /* Start collapsed */
  overflow: hidden; /* Hide content when collapsed */
  transition: max-height 0.8s ease;
}

/**
        .event-item:hover .event-description {
            max-height: 500px; /* Expand to a large height (adjust as needed for content)

        } */

/** end event styling */

textarea {
  max-width: 100%;
}

ol,
ul {
  padding-left: 2rem;
}

li {
  margin-top: 0.4rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

mark {
  padding: 3px 6px;
  background: var(--nc-ac-1);
  color: var(--nc-ac-tx);
}

input,
select,
textarea {
  padding: 6px 12px;
  margin-bottom: 0.5rem;
  background: var(--nc-bg-2);
  color: var(--nc-tx-2);
  border: 1px solid var(--nc-bg-3);
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

/* Two-column layout for calendar + sidebar */
.layout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.layout .card {
  flex: 1 1 0;
}

.sidecol {
  width: 18rem;
  margin-top: 3rem;
  flex-shrink: 0;
  position: sticky;
  top: 1rem; /* distance from the top of the viewport when it sticks */
  align-self: flex-start; /* prevents it from stretching to the height of the calendar */
}

@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }
  .sidecol {
    width: 100%;
  }
}

#myInput {
  background-image: url(css/searchIcon.png); /* Add a search icon to input */
  background-size: 20px 20px; /* Set the size of the search icon */
  /* background-position: 10px 3px; */
  background-position-x: left 3%;
  padding-left: 2rem; /* Add padding to prevent text from overlapping the search icon */
  background-position-y: center;
  background-repeat: no-repeat;
  width: 100%;
  margin-top: 0.3rem;
  border-radius: 25px;
  border-color: var(--nc-bg-1);
}

.switch {
  position: relative;
  display: inline-block;
  /* half size of original */
  width: 30px;
  height: 17px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffadad;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  /* knob at 50% size */
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #878787;
}

input:focus + .slider {
  box-shadow: 0 0 1px #878787;
}

input:checked + .slider:before {
  /* move knob half the original distance */
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px; /* half of 34px */
}

.slider.round:before {
  border-radius: 50%;
}

/* add a checkmark or other visible cue when a demographic toggle is active */
.slider:after {
  content: "";
  position: absolute;
  display: none;
  font-size: 0.8rem;
  left: 6px;
  top: 1px;
  color: #fff;
}

/* show check symbol when checked */
input:checked + .slider:after {
  display: block;
  content: "✓";
}

.tooltip-summary {
  font-size: 20px;
  font-weight: 500;
  text-decoration: underline;
}

/*
Source - https://stackoverflow.com/a/4151770
Posted by Gregg B, modified by community. See post 'Timeline' for change history
Retrieved 2026-03-02, License - CC BY-SA 4.0
*/

hr {
  border: none;
  height: 1px;
  /* Set the hr color */
  color: #333; /* old IE */
  background-color: #333; /* Modern Browsers */
}

/* if you'd rather reveal the native checkbox itself, comment out the opacity/size rules above */
/*
        .switch input { 
            opacity: 1;
            width: auto;
            height: auto;
            position: relative;
        }
        */

/* demographic-specific slider colors */
#babies-toggle .slider {
  background-color: var(--accentb-5-age);
}
#kids-toggle .slider {
  background-color: var(--accent6-11-age);
}
#tweens-toggle .slider {
  background-color: var(--accent12-16-age);
}
#teens-toggle .slider {
  background-color: var(--accent16up-age);
}
#adults-toggle .slider {
  background-color: var(--accent18up-age);
}
#intergen-toggle .slider {
  background-color: var(--accentintergen);
}

/* when toggled on, lighten the slider slightly so the knob remains visible */
#babies-toggle input:checked + .slider {
  background-color: var(--t-b-5-age);
}
#kids-toggle input:checked + .slider {
  background-color: var(--t-6-11-age);
}
#tweens-toggle input:checked + .slider {
  background-color: var(--t-12-16-age);
}
#teens-toggle input:checked + .slider {
  background-color: var(--t-16up-age);
}
#adults-toggle input:checked + .slider {
  background-color: var(--t-18up-age);
}
#intergen-toggle input:checked + .slider {
  background-color: var(--t-intergen);
}

/* ── Mobile list view ── only visible on small screens ── */
#mobile-view {
  display: none;
}

@media (max-width: 768px) {
  /* hide the desktop table calendar */
  .layout .card:first-child table,
  .layout .card:first-child .form-inline,
  .layout .card:first-child h3 {
    display: none;
  }

  /* show the mobile list */
  #mobile-view {
    display: block;
    margin-top: 0.5rem;
  }

  /* keep the sidebar below on mobile */
  .layout {
    flex-direction: column;
  }

  .sidecol {
    width: 100%;
    margin-top: 0;
  }
}

/* ── Week section ── */
.week-section {
  margin-bottom: 1.2rem;
}

.week-label {
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nc-tx-2);
  opacity: 0.6;
  padding: 0.25rem 0 0.4rem;
  border-bottom: 1px solid var(--nc-bg-3);
  margin-bottom: 0.5rem;
}

/* ── Day group inside a week ── */
.day-group {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  align-items: flex-start;
}

.day-badge {
  flex-shrink: 0;
  width: 2.6rem;
  text-align: center;
  padding-top: 0.15rem;
}

.day-badge .day-num {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: var(--nc-tx-1);
}

.day-badge .day-name {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nc-tx-2);
  opacity: 0.6;
}

.day-badge.is-today .day-num {
  background: var(--nc-lk-1);
  color: #fff;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.day-events {
  flex: 1;
}

/* ── Mobile event card ── */
.mobile-event-card {
  display: flex;
  align-items: stretch;
  background: var(--nc-bg-1);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 0.4rem;
  cursor: pointer;
  transition:
    box-shadow 0.15s ease,
    transform 0.15s ease;
  border: 1px solid var(--nc-bg-3);
}

.mobile-event-card:active {
  transform: scale(0.985);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.mobile-event-accent {
  width: 5px;
  flex-shrink: 0;
  background: var(--accentintergen);
}

.mobile-event-card.babies .mobile-event-accent {
  background: var(--accentb-5-age);
}
.mobile-event-card.kids .mobile-event-accent {
  background: var(--accent6-11-age);
}
.mobile-event-card.tweens .mobile-event-accent {
  background: var(--accent12-16-age);
}
.mobile-event-card.teens .mobile-event-accent {
  background: var(--accent16up-age);
}
.mobile-event-card.adult .mobile-event-accent {
  background: var(--accent18up-age);
}
.mobile-event-card.intergen .mobile-event-accent {
  background: var(--accentintergen);
}

.mobile-event-body {
  padding: 0.45rem 0.6rem;
  flex: 1;
  min-width: 0;
}

.mobile-event-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nc-tx-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-event-time {
  font-size: 0.72rem;
  color: var(--nc-tx-2);
  opacity: 0.75;
  margin-top: 0.1rem;
}

/* ── Modal ── */
#event-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 30, 18, 0.55);
  z-index: 1000;
  align-items: flex-end; /* sheet slides up from bottom */
  justify-content: center;
}

#event-modal-overlay.open {
  display: flex;
}

#event-modal {
  background: var(--nc-bg-1);
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 600px;
  padding: 1.5rem 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 85vh;
  overflow-y: auto;
}

#event-modal-overlay.open #event-modal {
  transform: translateY(0);
}

.modal-drag-handle {
  width: 2.5rem;
  height: 4px;
  background: var(--nc-bg-3);
  border-radius: 2px;
  margin: 0 auto 1.2rem;
}

.modal-category-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  margin-bottom: 0.7rem;
  border: 1.5px solid currentColor;
}

.modal-category-badge.babies {
  color: var(--accentb-5-age);
  background: var(--t-b-5-age);
}
.modal-category-badge.kids {
  color: #b8821a;
  background: var(--t-6-11-age);
}
.modal-category-badge.tweens {
  color: var(--accent12-16-age);
  background: var(--t-12-16-age);
}
.modal-category-badge.teens {
  color: var(--accent16up-age);
  background: var(--t-16up-age);
}
.modal-category-badge.adult {
  color: var(--accent18up-age);
  background: var(--t-18up-age);
}
.modal-category-badge.intergen {
  color: var(--accentintergen);
  background: #e8f4e8;
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nc-tx-1);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.modal-time {
  font-size: 0.85rem;
  color: var(--nc-tx-2);
  opacity: 0.75;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.modal-time::before {
  content: "🕐";
  font-size: 0.9rem;
}

.modal-divider {
  height: 1px;
  background: var(--nc-bg-3);
  margin: 0.8rem 0;
}

.modal-description {
  font-size: 0.88rem;
  color: var(--nc-tx-2);
  line-height: 1.5;
}

.modal-description:empty::before {
  content: "No description provided.";
  opacity: 0.45;
  font-style: italic;
}

.modal-gcal-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.7rem 1rem;
  background: var(--nc-lk-1);
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.15s;
}

.modal-gcal-link:hover {
  background: var(--nc-lk-2);
  color: #fff !important;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: var(--nc-bg-3);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  cursor: pointer;
  color: var(--nc-tx-2);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── Mobile nav bar (replaces the desktop button row) ── */
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 0.5rem;
  }

  .mobile-nav #monthAndYearMobile {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 1.1rem;
    flex: 1;
    text-align: center;
    min-width: 0;
    display: block;
    color: var(--nc-tx-1);
    line-height: 1.3;
    padding-top: 0; /* override the global h3 padding-top: 0.875rem */
  }

  .mobile-nav button {
    padding: 0.35rem 0.75rem;
    font-size: 1rem;
  }

  /* hide the jump-to form on mobile since nav handles it */
  .form-inline {
    display: none;
  }
}

/* ── Week collapse ── */
.week-label {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.week-collapse-icon {
  font-size: 0.55rem;
  opacity: 0.5;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 0.4rem;
}

.week-section.collapsed .week-collapse-icon {
  transform: rotate(180deg);
}

.week-section .day-group {
  transition: opacity 0.2s ease;
}

.week-section.collapsed .day-group {
  display: none;
}

/* ── Empty state ── */
.mobile-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--nc-tx-2);
  opacity: 0.5;
  font-size: 0.9rem;
}

/* ── View toggle toolbar (mobile only) ── */
.mobile-toolbar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-toolbar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
  }

  /* pill toggle group */
  .view-toggle-group {
    display: flex;
    border: 1.5px solid var(--nc-bg-3);
    border-radius: 99px;
    overflow: hidden;
    flex: 1;
  }

  .view-toggle-btn {
    flex: 1;
    padding: 0.3rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--nc-bg-2);
    color: var(--nc-tx-2);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition:
      background 0.15s,
      color 0.15s;
    white-space: nowrap;
  }

  .view-toggle-btn:first-child {
    border-right: 1.5px solid var(--nc-bg-3);
  }

  .view-toggle-btn.active {
    background: var(--nc-lk-1);
    color: #fff;
  }

  .view-toggle-btn:hover:not(.active) {
    background: var(--nc-bg-3);
  }

  /* today button */
  .mobile-today-btn {
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--nc-bg-2);
    color: var(--nc-tx-2);
    border: 1.5px solid var(--nc-bg-3);
    border-radius: 99px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
  }

  .mobile-today-btn:hover {
    background: var(--nc-bg-3);
  }
}

/* ── "adults" toggle — wire it up even though it's not in the sidebar currently ── */
