@font-face {
  font-family: "Miso";
  src: url("Miso/miso.eot"); /* IE9 Compat Modes */
  src: url("Miso/miso.eot?#iefix") format("embedded-opentype"),
       url("Miso/miso.woff") format("woff"),
       url("Miso/miso.ttf") format("truetype"),
       url("Miso/miso.svg#Miso") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} 

/* Character Styles */
.h4 {
font-family: "Barlow", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 30px;
line-height: 36px;
letter-spacing: 0.6px;
color: #000000;
}
.copy {
font-family: "Barlow", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 25px;
line-height: 32px;
letter-spacing: 0.5px;
color: #FFFFFF;
}
.h3 {
font-family: "Barlow", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 35px;
line-height: 42px;
letter-spacing: 0.7px;
color: #FFFFFF;
}
.h1 {
font-family: "Miso", "Helvetica Neue", Arial, sans-serif;
font-style: normal;
font-weight: bold;
font-size: 110px;
line-height: 126px;
letter-spacing: 2.2px;
color: #FFFFFF;
text-transform: uppercase;
}
.h2 {
font-family: "Barlow", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 70px;
line-height: 80px;
letter-spacing: 1.4px;
color: #FFFFFF;
text-transform: uppercase;
}
.unnamed-character-style-1 {
font-family: Arial;
font-style: normal;
font-weight: normal;
font-size: 35px;
line-height: 40px;
letter-spacing: 0.7px;
color: #0277db;
}

.headline-h2 {
  font-family: "Miso", "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

html, body {
  height: 100%;
}
body {
	background-color: #d93e18;
	color: #FFFFFF;

	flex-direction: column;
	min-height: 100vh;
}

.main-content {
  flex: 1;
}

/* Links inside main content */
.main-content a,
.main-content a.nav-link {
  color: #FFFFFF !important;
}
.main-content a:hover,
.main-content a.nav-link:hover {
  color: #F0EFEF !important;
}
/* Ensure key headings and schedule text are white by default (overridden on spielplan.php) */
.headline, .headline-h2, .schedule h2, .screening-title, .screening-info, .screening-time {
  color: #FFFFFF !important;
}

/* Active link inside main content should be black */
.main-content a.nav-link.active,
.main-content a.active {
  color: #FB3100 !important;
}
.main-content a.nav-link.active:hover,
.main-content a.active:hover {
  color: #FB3100 !important;
}

/* Pill-style nav links inside main content (narrow, rounded, white background) */
.active-pill {
  background: #FFFFFF;
  color: #FB3100 !important;
  padding: 0.25rem 0.8rem;
  border-radius: 3px;
  display: inline-block;
  margin-top: -3px;
}

.table-time {
	font-family: "Barlow", sans-serif;
	font-weight: bold;
	letter-spacing: 0.6px;
}


.small {	font-family: "Barlow", sans-serif;
	font-weight: normal;
	letter-spacing: 0.5px;
	font-size: .85rem;
}
.film-card a:link {
	text-decoration: none;
}

/* Schedule styles */
.schedule {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Specific spacing for the Spielplan heading */
.spielplan-heading { display: inline-block; margin-bottom: 2.5rem; }

.schedule h2 {
  font-family: Miso;
  font-size: 2rem;
  font-weight: bold;

  text-transform: uppercase;
}

.schedule .schedule-inner { padding-bottom: 1rem; }
.screenings { width: 100%; }
/* line spans almost the table width but with left/right insets */
.screening-row { position: relative; padding: 0.6rem 0; }
/* clickable screening rows should show pointer */
.screening-row[onclick], .screening-row[role="link"] { cursor: pointer; }
.screening-row:focus { outline: 2px solid rgba(255,255,255,0.15); outline-offset: 2px; }.screening-row::before {
  content: "";
  position: absolute;
  top: 0rem; /* aligns visually with row */
  left: 10px;   /* inset from left (time column + gap) */
  right: 10px;  /* inset from right */
  width: auto;  /* spans between left and right */
  height: 1px;
  background: rgba(255,255,255,1);
}
.screening-time { font-weight: 700; font-size: 1.3rem; white-space: nowrap; width: 72px; min-width: 72px; text-align: right; flex: 0 0 72px; }
.screening-title {
  padding-left: 0;
  font-weight: 700; /* stronger title */
  text-align: left; /* bündig/flush alignment */
}
.screening-info { color: rgba(255,255,255,0.75); font-size: 0.8rem; line-height: 1.2; }
.screening-action { text-align: right; }
.active-pill {
  background: #FFFFFF;
  color: #000;
  padding: .4rem .6rem .1rem .6rem; /* top right bottom left */
  border-radius: 999px; /* strongly rounded pill */
  font-weight: 900;
  font-family: "Miso", "Barlow", sans-serif;
  text-transform: uppercase; /* Versalien */
  letter-spacing: 0.6px;
  display: inline-block;
  border: 1px solid transparent; /* keep layout stable on hover */
  transition: background .12s ease, color .12s ease, border-color .12s ease, transform .08s ease;
}
/* invert styling on hover/focus: white text + white border, transparent background */
.active-pill:hover,
.active-pill:focus {
  background: transparent;
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
  outline: none;
  text-decoration: none;
}

/* Ticket button styling: rounded black button with white text; hover => transparent with black border and black text */
.btn-ticket {
  display: inline-block;
  background: #000000;
  color: #FFFFFF;
  padding: .4rem .6rem .1rem .6rem;
  border-radius: 999px;
  font-weight: 900;
  font-family: "Miso", "Barlow", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.6px;
  display: inline-block;
  border: 1px solid transparent;
  transition: background .12s ease, color .12s ease, border-color .12s ease, transform .08s ease;

}

.btn-ticket:hover,
.btn-ticket:focus {
  background: transparent;
  color: #000000;
  border-color: #000000 !important;
  text-decoration: none;
  outline: none;
}

/* Current films */
.current-films { margin: 2rem auto; max-width: 1150px; }
/* two fixed 560px columns so the overall container is narrower; centered and moderate gap — wider posters, not taller */
.current-films .container { max-width: none; padding-left: 0; padding-right: 0; }
.current-films .row { display: grid; grid-template-columns: repeat(2, 450px); justify-content: center; justify-items: center; gap: 24px; }
/* small column padding */
.current-films .row > [class*="col-"] { padding-left: 0.25rem; padding-right: 0.25rem; }
.current-films .film-card { text-align: center; padding: 0.25rem; max-width: 560px; width: 100%; }
/* make poster wider (bigger width), keep natural height to avoid cropping */
.current-films .film-card img { width: 100%; max-width: 560px; display: block; margin: 0 auto; border-radius: 4px; aspect-ratio: 4 / 3; object-fit: cover; }
.current-films .film-caption { margin-top: 0.4rem; text-align: center; }
.current-films .film-title { font-weight: 700; margin-top: 0.15rem; margin-bottom: 0.15rem; color: #fff; font-size: 1.15rem; }
.current-films .film-meta { color: rgba(255,255,255,0.86); font-size: 0.88rem; margin: 0; }

/* responsive: allow columns to flex if viewport slightly smaller, and stack on narrow screens */
@media (max-width: 1200px) {
  .current-films .row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .current-films { max-width: 100%; padding: 0 1rem; }
}
@media (max-width: 860px) {
  .current-films .row { grid-template-columns: 1fr; gap: 12px; }
  .current-films .film-card img { max-width: 420px; aspect-ratio: 4 / 3; object-fit: cover; }
  .current-films .film-title { font-size: 1rem; }
  .current-films .film-meta { font-size: 0.78rem; }
}

.film-card {
	margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .schedule { padding: 0 .75rem; }
  /* Stack rows, show time+title on the first line */
  .screening-row { padding: 0.5rem 0; display: block; }
  .screening-row::before { left: 0; width: 100%; }

  /* remove bootstrap gutter/padding inside the row on small screens */
  .screening-row > [class*="col-"] { padding-left: 0; padding-right: 0; }

  /* time and title inline on first line */
  .screening-time { display: inline-block; margin-right: 0.5rem; width: auto; min-width: 0; text-align: left; }
  .screening-title { display: inline-block; max-width: calc(100% - 90px); vertical-align: middle; padding-left: 0; }

  /* info and action each on their own line, indented */
  .screening-info,
  .screening-action { display: block; margin-left: 60px; margin-top: 0.35rem; text-align: left; }

  .screening-info { font-size: 0.75rem; }
  .screening-action { margin-top: .5rem; }

  /* current films mobile tweaks */
  .current-films .film-card { padding: .5rem 0; }
  .current-films .film-title { font-size: 1rem; }
  .current-films .film-meta { font-size: 0.85rem; }

  /* Film Carousel - Horizontal Scroll on small screens */
  .current-films {
    max-width: 100%;
    padding: 0;
    margin: 2rem 0;
  }

  .film-carousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-track {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 1rem;
    width: fit-content;
  }

  .carousel-slide {
    flex: 0 0 auto;
    width: 70vw;
    min-width: 70vw;
  }

  .carousel-slide .film-card {
    padding: 0;
  }

  .carousel-slide .film-card img {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  /* Hide info-logo on small screens */
  #info-logo {
    display: none;
  }

  /* Background for info-contact on mobile */
  #info-contact {
    background-color: transparent;
    padding: 1rem;
    margin: 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  #info-contact address {
    text-align: center !important;
  }

  #info-contact h1 {
    text-align: center;
  }
}

.bi {
	color: inherit;
}

/* Film details page */
.film-details-page { background-color: #E6B200; color: #000; }
/* narrower content for film details */
.film-details-page .content { padding: 2.5rem 1.25rem; max-width: 960px; margin: 0 auto; }
.film-details-page .film-hero { margin-bottom: 1rem; }
.film-details-page .film-title { font-family: "Miso", "Helvetica Neue", Arial, sans-serif; font-size: 2.6rem; color: #000; margin-bottom: .25rem; text-transform: uppercase; letter-spacing: 1px; }
.film-details-page .film-director { font-family: "Miso", "Helvetica Neue", Arial, sans-serif; font-size: 1.6rem; text-transform: uppercase;  margin-bottom: .25rem; }
.film-details-page .director-icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; margin-right: 0.5rem; color: #000; }
.film-details-page .film-meta-line { color: rgba(0,0,0,0.7); margin-bottom: 0.75rem; font-size: .85rem; }
.film-details-page .film-meta-line .bi { vertical-align: -0.12em; margin-right: 0.35rem; font-size: 1rem; }
.film-details-page .fsk-icon { width: 28px; height: auto; display: inline-block; vertical-align: middle; margin-left: 0.25rem; }
.film-details-page .sound-icon { width: 20px !important; max-width: 20px !important; height: auto !important; display:inline-block; vertical-align: middle; margin-right: 0.35rem; margin-left: 0.25rem; }

/* larger images & tighter gap */
.film-details-page .film-gallery { display: flex; justify-content: center; gap: 12px; align-items: flex-start; flex-wrap: wrap; margin-bottom: 2rem; }
.film-details-page .film-gallery > .col-12.col-lg-7 { flex: 0 0 600px; max-width: 600px; }
.film-details-page .film-gallery > .col-12.col-lg-5 { flex: 0 0 300px; max-width: 300px; }
.film-details-page .film-gallery .main-poster { width: 100%; height: auto; border-radius: 6px; }
.film-details-page .small-posters { display: flex; flex-direction: column; gap: 0.4rem; align-items: stretch; }
.film-details-page .small-posters .small-poster { width: 100%; max-width: 300px; height: auto; border-radius: 6px; }

/* spacing between gallery and detail columns */
.film-details-page .film-detail-columns { display: flex; justify-content: center; gap: 12px; align-items: flex-start; flex-wrap: wrap; margin-top: 2rem; }
@media (max-width: 992px) {
  .film-details-page .film-gallery { margin-bottom: 1.25rem; }
  .film-details-page .film-detail-columns { margin-top: 1rem; }
}

/* Responsive video embed for trailers */
.film-details-page .video-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; border-radius: 6px; overflow: hidden; }
.film-details-page .video-wrapper iframe { position: absolute; top:0; left:0; width:100%; height:100%; border:0; }
.film-details-page .video-wrapper::after { content: ""; position:absolute; inset:0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03); }


/* detail columns aligned to match gallery widths (smaller gap) */
.film-details-page .film-detail-columns { display: flex; justify-content: center; gap: 12px; align-items: flex-start; flex-wrap: wrap; }
.film-details-page .film-detail-columns .film-description { flex: 0 0 600px; max-width: 600px; padding-right: 0.75rem; }
.film-details-page .film-detail-columns .film-schedule { flex: 0 0 300px; max-width: 300px; padding-left: 0.75rem; border-left: 1px solid rgba(0,0,0,0.08); }
.film-details-page .film-detail-columns .film-schedule h2 { font-family: "Miso", "Helvetica Neue", Arial, sans-serif; font-size: 1.5rem; margin-bottom: .5rem; text-transform: uppercase; font-weight: 700; }
.film-details-page .film-detail-columns .film-schedule .schedule-list,
.film-details-page .film-detail-columns .film-schedule .legend { max-width: 300px; overflow-wrap: break-word; }

/* Schedule table */
.film-details-page .schedule-table { width: 100%; max-width: 260px; border-collapse: collapse; margin: 0 0 .5rem 0; text-transform: uppercase; font-family: "Miso", "Helvetica Neue", Arial, sans-serif; margin-left: auto; margin-right: auto; }
.film-details-page .schedule-table th, .film-details-page .schedule-table td { padding: .5rem .6rem; border-bottom: 1px solid rgba(0,0,0,1); text-align: left; vertical-align: middle; font-size: 1.2rem; }
.film-details-page .schedule-table th { font-weight: 700; font-size: .8rem; text-transform: uppercase; color: rgba(0,0,0,0.6); }
/* first column: normal weight; second column (time): bold */
.film-details-page .schedule-table td:first-child { font-weight: 700; text-transform: uppercase; }
.film-details-page .schedule-table td:nth-child(2) { font-weight: 700; }
.film-details-page .schedule-table td:nth-child(3) { font-weight: 400; color: rgba(0,0,0,0.7); }
.film-details-page .schedule-table tbody tr:last-child td { border-bottom: none; }

/* Clickable schedule rows */
.film-details-page .schedule-table tr.clickable-row { cursor: pointer; }
.film-details-page .schedule-table tr.clickable-row:hover { background: rgba(0,0,0,0.04); }
.film-details-page .schedule-table tr.clickable-row:focus { outline: 2px solid rgba(0,0,0,0.08); }

.film-details-page .legend { font-size: .82rem; color: rgba(0,0,0,0.65); margin-top: 1rem; }

/* Active spielplan button (black pill with page background colored text) */
.film-details-page .active-spielplan { display: inline-block; background: #000; color: #E6B200; padding: 0.45rem 0.9rem; border-radius: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; }
@media (max-width: 576px) {
  .film-details-page .active-spielplan { padding: 0.35rem 0.6rem; font-size: 0.95rem; }
  .film-details-page .film-detail-columns .film-schedule h2 { margin-top: 1.5rem; }
  .film-details-page .small-posters { margin-top: 1.5rem; }
}

.film-description p { font-family: Barlow, "Helvetica Neue", Arial, sans-serif; }

/* Responsive: revert to vertical stacking */
@media (max-width: 992px) {
  .film-details-page .film-gallery { display: block; }
  .film-details-page .film-gallery > .col-12.col-lg-7,
  .film-details-page .film-gallery > .col-12.col-lg-5 { flex: none; max-width: 100%; }
  .film-details-page .small-posters { flex-direction: row; gap: .5rem; }

  .film-details-page .film-detail-columns { display: block; }
  .film-details-page .film-detail-columns .film-description,
  .film-details-page .film-detail-columns .film-schedule { max-width: 100%; flex: none; padding: 0; border-left: none; }
}

/* Responsive: stack gallery and columns */
@media (max-width: 992px) {
  .film-details-page .film-gallery .small-posters { flex-direction: row; gap: .5rem; }
  .film-details-page .film-gallery .main-poster { max-width: 100%; }
  .film-details-page .small-posters .small-poster { max-width: 48%; }
}
@media (max-width: 768px) {
  .film-details-page .film-detail-columns .film-schedule { border-left: none; padding-left: 0; }
  .film-details-page .film-detail-columns .film-description { padding-right: 0; margin-top: 1rem; }
  .film-details-page .film-title { font-size: 1.8rem; }
}
/* Header styles */
.header {
  background: url('../img/Decke-menu4.png') center/cover no-repeat;
  background-color: transparent;
  /* Reduce bottom padding while keeping top spacing */
  padding: 1rem 0 0.5rem 0;
  position: relative;
  /* stronger shadow: larger offset, blur and slightly darker for better separation */
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  -webkit-box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align items to the left so nav is near logo */
  gap: 5.25rem; /* spacing between logo, nav and other items */
}
.burger-menu-btn { margin-left: auto; }
.header .logo img {
  height: 80px;
  display: block;
  max-width: 100%;
} 

/* Burger menu button */
.burger-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger-menu-btn span {
  width: 28px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}

.burger-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
  margin-left: 1rem; /* add space between logo and nav */
}
.main-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem; /* spacing between items */
  align-items: center;
}
.nav-item {
  text-transform: uppercase;
  font-family: "Miso", "Barlow", sans-serif; /* use Miso for nav */
  font-weight: 700;
  font-size: 1.4rem; /* larger font size */
  letter-spacing: 1px;
}
.main-nav .menu .nav-link {
  background: #FFFFFF;
  color: #000000;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem; /* tighter boxes closer to text */
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
}
.main-nav .menu .nav-link:hover {
  background: #f0f0f0;
}
@media (max-width: 768px) {
  .header .inner { 
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .header .logo img { height: 48px; }
  
  .burger-menu-btn {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #FB3100;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }
  
  .main-nav.active {
    max-height: 400px;
  }
  
  .main-nav .menu {
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    width: 100%;
  }
  
  .main-nav .menu .nav-item {
    width: 100%;
  }
  
  .main-nav .menu .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .main-nav .menu .nav-link:last-child {
    margin-bottom: 0;
  }
}


/* content styles */
.content {
  flex: 1;
  padding: 2rem;
  font-family: "Barlow", sans-serif;
}
.headline {
  font-family: "Miso", "Helvetica Neue", Arial, sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.active {
  background-color: #fff;
  color:#000000;
  font-weight: bold;
  text-decoration: none;
}
.nav li a:link {
  color: white;
  text-decoration: none;

}

/* Footer styles */
/* Ensure footer text and icons stay white on all pages, even when a page sets global text to black (e.g. spielplan) */
.site-footer, .site-footer * { color: #FFFFFF !important; }
.site-footer {
  background-color: #000000;
  padding: 3rem 0; /* normal padding, stripe placed outside */
  position: relative;
  z-index: 1; /* keep footer above the stripe */
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.7px;
}
.site-footer::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px; /* placed outside the footer */
  height: 20px;
  background: var(--page-bg);
  z-index: 0;
}
.site-footer h2 {
  color: #FFFFFF;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.site-footer h1 {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: lighter;
}
.site-footer span {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.site-footer a {
  color: #FFFFFF;
  text-decoration: none;
}
.site-footer a:hover {
  color: #F0EFEF;
  text-decoration: underline;
}
/* Left-align footer columns on desktop/tablet and add spacing */
.site-footer .row > [class*="col-"] { text-align: left; margin-bottom: 2rem; }
@media (max-width: 576px) {
  .site-footer { text-align: center; }
  .site-footer .row > [class*="col-"] { margin-bottom: 1rem; }
}

/* Schedule day tabs and visibility */
#day-tabs { display: flex; gap: 0.25rem; align-items: center; flex-wrap: nowrap; }
#day-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
#day-tabs li { flex: 0 0 auto; }
#day-tabs .day-pill {
  opacity: 0.9;
  cursor: pointer;
  padding: 0.2rem 0.48rem 0.01rem 0.48rem; /* requested padding: top right bottom left */
  display: inline-block;
  transition: opacity .15s ease, background .15s ease, color .15s ease, transform .12s ease;
  white-space: nowrap;
  font-family: "Miso", "Barlow", sans-serif;
  font-weight: 800;
  font-size: 1.2rem; /* increased font size */
  position: relative;
} 

#day-tabs .day-pill.active-pill {
  opacity: 1;
  background: #FFFFFF;
  color: #FB3100;
  font-weight: 800;
  border-radius: 3px;
  padding: 0.2rem 0.48rem 0.01rem 0.48rem; /* requested padding: top right bottom left */
  transform: translateY(-1px);
} 

/* Mobile: reduce padding so more pills fit */
@media (max-width: 576px) {
  #day-tabs { padding: 0.25rem 0.5rem; scroll-snap-type: x mandatory; }
  #day-tabs li { scroll-snap-align: start; }
  #day-tabs .day-pill { padding: 0.2rem 0.48rem 0.01rem 0.48rem; font-size: 1rem; }

  /* prev/next buttons for easier navigation on mobile */
  .day-tabs-prev, .day-tabs-next { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 6px; border: none; background: rgba(255,255,255,0.08); color: #fff; font-size: 1.2rem; }
  .day-tabs-controls { display: flex; align-items: center; gap: 0.35rem; justify-content: center; }
}

.schedule-day { display: none; margin-bottom: 2.5rem; }
.schedule-day.is-visible { display: block; }
