@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --ink: #17233d;
  --muted: #71809a;
  --primary: #4b9cfb;
  --primary-dark: #2677dc;
  --line: rgba(103, 139, 185, 0.16);
  --surface: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(51, 91, 137, 0.14);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #f6faff;
}

body.app-shell {
  position: relative;
  overflow-x: hidden;
}
body.app-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      180deg,
      /* Atur dua angka alpha ini untuk mengatur seberapa jelas gambar terlihat. */
      rgba(247, 251, 255, 0.62),
      rgba(247, 251, 255, 0.8)
    ),
    url("../img/bgrealese_2.png") center / cover no-repeat;
  /* 1 = gambar paling lembut, 0.55 = gambar lebih terlihat. */
  opacity: 0.82;
}
body.app-shell::after {
  content: "";
  position: fixed;
  width: 42vw;
  height: 42vw;
  max-width: 620px;
  max-height: 620px;
  right: -12vw;
  top: 8vh;
  border-radius: 50%;
  z-index: -2;
  background: radial-gradient(
    circle,
    rgba(137, 207, 255, 0.26),
    rgba(137, 207, 255, 0) 68%
  );
  animation: floatBlob 12s ease-in-out infinite alternate;
}
.ambient-blob {
  position: fixed;
  z-index: -1;
  width: 23rem;
  height: 23rem;
  left: -10rem;
  bottom: -8rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(190, 226, 255, 0.46),
    transparent 68%
  );
  animation: floatBlob 10s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}
@keyframes floatBlob {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-24px, 28px, 0) scale(1.08);
  }
}

.site-nav {
  position: sticky;
  top: 14px;
  z-index: 1000;
  width: min(1160px, calc(100% - 40px));
  margin: 18px auto 0;
  max-width: 1160px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 35px rgba(52, 89, 130, 0.08);
  backdrop-filter: blur(18px);
}
.site-nav .navbar-brand {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 8px;
  border-radius: 11px;
  color: white;
  background: linear-gradient(135deg, #75c9ff, #477ef5);
  box-shadow: 0 7px 18px rgba(71, 126, 245, 0.25);
}
.nav-link {
  color: var(--muted);
  font-weight: 600;
}
.nav-link:hover {
  color: var(--primary-dark);
}

.page-wrap {
  max-width: 1160px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 48px;
}
.eyebrow {
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-title {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.065em;
  font-weight: 800;
}
.hero-title span {
  color: var(--primary-dark);
}
.hero-copy {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.section-heading {
  letter-spacing: -0.04em;
  font-weight: 800;
}
.glass-card,
.class-card,
.auth-card,
.admin-card {
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.class-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  overflow: hidden;
  color: var(--ink);
  border-radius: 24px;
  padding: 24px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.class-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  min-height: 45px;
}
.class-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  left: -38px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(123, 195, 255, 0.22);
  filter: blur(2px);
  z-index: 0;
}
.class-card > * {
  position: relative;
  z-index: 1;
}
.class-card.grade-3::after {
  background: rgba(255, 194, 124, 0.24);
}
.class-card.grade-4::after {
  background: rgba(118, 211, 174, 0.24);
}
.class-card.grade-5::after {
  background: rgba(172, 145, 255, 0.22);
}
.class-card.grade-6::after {
  background: rgba(91, 171, 255, 0.28);
}
.class-title-line p {
  margin-left: auto;
}
.quick-times {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.quick-times button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--primary-dark);
  background: #f5faff;
  font-size: 0.72rem;
  font-weight: 700;
}
.quick-times button:hover {
  background: #e5f2ff;
}

.class-card:hover {
  color: var(--ink);
  transform: translateY(-7px);
  box-shadow: 0 26px 50px rgba(64, 118, 177, 0.2);
}
.class-filter-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(75, 156, 251, 0.22);
  border-radius: 12px;
  padding: 9px 13px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  transition: 0.25s ease;
  transform: translateY(-20px);
}
.class-filter-trigger:hover {
  transform: translateY(-22px);
  background: #fff;
  box-shadow: 0 10px 24px rgba(51, 115, 184, 0.12);
}
.class-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(75, 156, 251, 0.25);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #55bdf4, #357fe5);
  box-shadow: 0 9px 19px rgba(53, 127, 229, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
  transition: 0.3s ease;
}
.class-card:hover .class-card-cta {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 13px 24px rgba(53, 127, 229, 0.3);
}
.filter-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(18, 35, 61, 0.22);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  backdrop-filter: blur(3px);
}
.filter-sheet {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1100;
  width: min(390px, calc(100% - 28px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(20, 55, 96, 0.22);
  transform: translate(-50%, calc(100% + 30px));
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(20px);
}
.filter-sheet.is-open {
  transform: translate(-50%, 0);
}
.filter-sheet-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.filter-sheet-handle {
  width: 38px;
  height: 4px;
  margin: 0 auto 14px;
  border-radius: 5px;
  background: #cbd9e8;
}
.filter-sheet-close {
  border: 0;
  color: var(--muted);
  background: transparent;
}
.filter-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.filter-options button {
  border: 1px solid #dbe7f4;
  border-radius: 12px;
  padding: 10px 7px;
  color: var(--muted);
  background: #f8fbff;
  font-size: 0.75rem;
  font-weight: 800;
  transition: 0.25s ease;
}
.filter-options button.active,
.filter-options button:hover {
  color: #fff;
  border-color: var(--primary-dark);
  background: var(--primary-dark);
}
.class-card.is-filtered-out {
  display: none;
}
.schedule-admin-button {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 12px;
}
.schedule-floating-admin {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #55bdf4, #357fe5);
  box-shadow: 0 14px 30px rgba(53, 127, 229, 0.3);
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.schedule-floating-admin:hover {
  color: #fff;
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 20px 36px rgba(53, 127, 229, 0.38);
}
.print-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(18, 35, 61, 0.22);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  backdrop-filter: blur(3px);
}
.print-sheet {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1100;
  width: min(390px, calc(100% - 28px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(20, 55, 96, 0.22);
  transform: translate(-50%, calc(100% + 30px));
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(20px);
}
.print-sheet.is-open {
  transform: translate(-50%, 0);
}
.print-sheet-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.print-options {
  display: grid;
  gap: 8px;
}
.print-options button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border: 1px solid #dbe7f4;
  border-radius: 14px;
  color: var(--ink);
  background: #f8fbff;
  text-align: left;
  font-weight: 800;
  transition: 0.25s ease;
}
.print-options button:hover {
  border-color: #75baff;
  background: #eef7ff;
  transform: translateY(-2px);
}
.print-options i {
  color: var(--primary-dark);
  font-size: 1.1rem;
}
.print-options small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}
.class-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: #fff;
  border-radius: 15px;
  background: linear-gradient(135deg, #82d5ff, #4a91f4);
}
.class-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}
.class-title-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 32px;
}
.class-card p {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}
.class-title-line p {
  margin-left: auto;
}
.class-meta {
  display: grid;
  flex: 1;
  min-width: 0;
  gap: 4px;
  margin-left: auto;
  padding-top: 2px;
  color: #1d2d48;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
  white-space: normal;
}
.class-meta span {
  min-width: 0;
  color: #1d2d48;
  overflow-wrap: anywhere;
}
.class-meta i {
  color: #246fc6;
}
.class-nav-info {
  min-width: 0;
  margin-left: auto;
  margin-right: 18px;
  text-align: right;
  line-height: 1.35;
}
.class-nav-name {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}
.class-nav-meta {
  display: grid;
  gap: 2px;
  justify-content: end;
  color: var(--muted);
  font-size: 0.66rem;
  white-space: nowrap;
}
.btn-primary {
  --bs-btn-bg: var(--primary-dark);
  --bs-btn-border-color: var(--primary-dark);
  --bs-btn-hover-bg: #1764c5;
  --bs-btn-hover-border-color: #1764c5;
  border-radius: 12px;
  font-weight: 700;
}
.btn-soft {
  color: var(--primary-dark);
  border: 1px solid rgba(75, 156, 251, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}
.btn-soft:hover {
  background: #fff;
  color: var(--primary-dark);
}

.schedule-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
  /* Atur alpha overlay berikut: semakin kecil angkanya, semakin terlihat bgschedule-card.png. */
  background:
    linear-gradient(
      135deg,
      rgba(247, 251, 255, 0.62),
      rgba(255, 255, 255, 0.78)
    ),
    url("../img/bgschedule-card.png") center / cover no-repeat;
  backdrop-filter: blur(16px);
}
.schedule-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      135deg,
      rgba(247, 251, 255, 0.62),
      rgba(255, 255, 255, 0.78)
    ),
    url("../img/bgschedule-card.png") center/cover no-repeat;
  opacity: 0.92;
}
.schedule-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 330px;
  height: 330px;
  left: -110px;
  bottom: -170px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(92, 186, 255, 0.28),
    rgba(92, 186, 255, 0) 70%
  );
  filter: blur(4px);
  animation: scheduleFloat 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.schedule-card > * {
  position: relative;
  z-index: 1;
}
@keyframes scheduleFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(45px, -28px, 0) scale(1.12);
  }
}
.schedule-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.schedule-days {
  display: block;
  padding: 22px;
}
.day-column {
  min-width: 0;
}
.schedule-days.show-all .day-column {
  display: block;
  margin-bottom: 28px;
}
.schedule-days.show-all .day-column:last-child {
  margin-bottom: 0;
}
.day-heading {
  padding: 13px 14px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #74cfff, #4e8cf7);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}
.lesson-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.lesson {
  padding: 22px 24px;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}
.lesson-time {
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 800;
}
.lesson-name {
  margin: 8px 0 6px;
  font-size: 1.09rem;
  font-weight: 800;
}
.lesson-teacher {
  color: var(--muted);
  font-size: 0.88rem;
}
.empty-lesson {
  display: grid;
  place-items: center;
  min-height: 104px;
  color: #aab8cb;
  border: 1px dashed #cbd9e8;
  border-radius: 16px;
  font-size: 0.8rem;
}

.auth-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}
.auth-card {
  width: min(100%, 460px);
  padding: 34px;
  border-radius: 28px;
}
.auth-logo {
  text-align: center;
  margin-bottom: 28px;
}
.form-label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}
.form-control,
.form-select {
  border: 1px solid #dbe7f4;
  border-radius: 12px;
  padding: 0.76rem 0.9rem;
}
.form-control:focus,
.form-select:focus {
  border-color: #75baff;
  box-shadow: 0 0 0 0.25rem rgba(75, 156, 251, 0.13);
}

.admin-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 42px 20px;
}
.admin-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #172d50 !important;
}
.admin-nav .navbar-brand,
.admin-nav .nav-link {
  color: #fff !important;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.stat-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}
.stat-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #79d7ff, #4e8cf7);
}
.stat-value {
  margin-top: 18px;
  font-size: 2rem;
  font-weight: 800;
}
.admin-card {
  border-radius: 22px;
  padding: 22px;
}
.table {
  --bs-table-bg: transparent;
  vertical-align: middle;
}
.table thead th {
  color: var(--muted);
  border-bottom-color: var(--line);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.table td {
  border-color: var(--line);
}
.alert {
  border: 0;
  border-radius: 14px;
}
.typewriter-caret {
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.08em;
  vertical-align: -0.05em;
  background: currentColor;
  animation: blinkCaret 0.8s step-end infinite;
}
@keyframes blinkCaret {
  50% {
    opacity: 0;
  }
}
.day-picker {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  justify-content: center;
  padding: 18px 22px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.day-picker::-webkit-scrollbar {
  display: none;
}
.day-picker button {
  flex: 0 0 auto;
  min-width: 74px;
  border: 1px solid #dce7f4;
  border-radius: 999px;
  padding: 8px 17px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  font-weight: 800;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
.day-picker button:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
  border-color: #a9cbed;
}
.day-picker button.active {
  color: #fff;
  border-color: #2479d9;
  background: linear-gradient(135deg, #55b9f3, #347ee4);
  box-shadow: 0 10px 24px rgba(38, 119, 220, 0.25);
  transform: translateY(-2px) scale(1.03);
}
.day-column.is-hidden {
  display: none;
}
.schedule-days:not(.show-all) .day-heading {
  display: none;
}
.day-column.day-enter .lesson {
  animation: lessonReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--lesson-index, 0) * 90ms);
}
@keyframes lessonReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
.lesson.is-current {
  border-color: #64b6ff;
  box-shadow: 0 0 0 3px rgba(100, 182, 255, 0.12);
}
.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0 34px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 35px rgba(52, 89, 130, 0.08);
  backdrop-filter: blur(18px);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.footer-note {
  color: var(--muted);
  font-size: 0.72rem;
}
.footer-links {
  display: flex;
  gap: 14px;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--primary-dark);
}
.current-label {
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .class-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .site-nav {
    margin: 10px;
    width: calc(100% - 20px);
  }
  .page-wrap {
    padding-top: 42px;
    width: calc(100% - 20px);
  }
  .hero-title {
    font-size: clamp(1.75rem, 8.2vw, 2.6rem);
    letter-spacing: -0.075em;
  }
  .schedule-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .schedule-days {
    display: block;
    padding: 14px;
  }
  .day-column {
    margin-bottom: 16px;
  }
  .day-heading {
    text-align: left;
  }
  .day-picker {
    justify-content: flex-start;
    padding-left: 14px;
    padding-right: 14px;
  }
  .lesson-list {
    grid-template-columns: 1fr;
  }
  .lesson {
    padding: 18px;
  }
  .schedule-card {
    border-radius: 22px;
    background-position: center center;
  }
  .schedule-card::before {
    background-position: center center;
  }
  .auth-card {
    padding: 25px 20px;
  }
  .class-nav-info {
    margin-right: 8px;
  }
  .class-nav-name {
    font-size: 0.78rem;
  }
  .class-nav-meta {
    display: block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .site-footer {
    width: calc(100% - 20px);
    padding-bottom: 22px;
    font-size: 2px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }
  .footer-links {
    gap: 12px;
  }
  .table-responsive {
    border-radius: 14px;
  }
}
@media (max-width: 760px) {
  .site-footer {
    width: calc(100% - 20px);
    padding-bottom: 22px;
  }
}
@media print {
  body.app-shell::before,
  body.app-shell::after,
  .ambient-blob,
  .site-nav,
  .site-footer,
  .print-hide {
    display: none !important;
  }
  .page-wrap {
    padding: 0;
  }
  .schedule-card {
    box-shadow: none;
  }
  .print-sheet,
  .print-sheet-backdrop,
  .filter-sheet,
  .filter-sheet-backdrop {
    display: none !important;
  }
  body.print-all .day-column {
    display: block !important;
    margin-bottom: 24px;
  }
  body.print-all .schedule-days {
    display: block !important;
  }
  body.print-all .day-heading {
    display: block !important;
  }
}
