/* ==========================================
   JADWAL MAPEL - STYLE (STANDALONE)
   ========================================== */

/* ==========================================
   RESET & VARIABLES
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
}

:root {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #1e293b;
  --bg-input: #0f172a;
  --border-color: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --primary: #22d3ee;
  --primary-dark: #0ea5e9;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 16px;
}

body {
  min-height: 100vh;
  background: var(--bg-primary);
  padding: 20px;
  padding-bottom: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================
   HEADER
========================================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 16px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

.header h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.header h1 span {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}

.btn-back {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-back:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* ==========================================
   PAGE TITLE
========================================== */
.page-title {
  margin-bottom: 20px;
}

.page-title h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.page-title p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 2px;
}

/* ==========================================
   BANNER MOTIVASI (HERO SHAPE)
========================================== */
.motivasi-hero {
  width: 100%;
  min-height: 100px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.08),
    rgba(56, 189, 248, 0.05),
    rgba(251, 191, 36, 0.05)
  );
  border-radius: var(--radius);
  border: 1px solid rgba(124, 58, 237, 0.1);
  margin-bottom: 24px;
  padding: 20px 32px;
  position: relative;
  overflow: hidden;
  animation:
    pulseGlow 5s ease-in-out infinite,
    floatBanner 5s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SHAPE: OVAL */
.motivasi-hero.oval {
  border-radius: 60px / 40px;
  border: 2px solid rgba(124, 58, 237, 0.2);
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.06),
    rgba(124, 58, 237, 0.06)
  );
}

/* SHAPE: CIRCLE */
.motivasi-hero.circle {
  border-radius: 50%;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 24px;
  aspect-ratio: 4/1;
  min-height: 120px;
  border: 2px solid rgba(56, 189, 248, 0.15);
  background: radial-gradient(
    circle at center,
    rgba(124, 58, 237, 0.08),
    rgba(56, 189, 248, 0.04)
  );
}

/* SHAPE: WAVE */
.motivasi-hero.wave {
  border-radius: 0;
  border: none;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.06),
    rgba(56, 189, 248, 0.04)
  );
  padding: 30px 32px;
}

.motivasi-hero.wave::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 20px;
  background: repeating-linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.1) 0px,
    rgba(56, 189, 248, 0.1) 20px,
    transparent 20px,
    transparent 40px
  );
  animation: waveMove 8s linear infinite;
}

.motivasi-hero.wave::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 20px;
  background: repeating-linear-gradient(
    270deg,
    rgba(251, 191, 36, 0.1) 0px,
    rgba(124, 58, 237, 0.1) 20px,
    transparent 20px,
    transparent 40px
  );
  animation: waveMove 6s linear infinite reverse;
}

/* SHAPE: BUBBLE */
.motivasi-hero.bubble {
  border-radius: 20px 20px 20px 4px;
  border: 2px solid rgba(251, 191, 36, 0.15);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.06),
    rgba(251, 191, 36, 0.06)
  );
  position: relative;
}

.motivasi-hero.bubble::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid rgba(124, 58, 237, 0.08);
  border-radius: 0 0 10px 10px;
}

/* SHAPE: STAR */
.motivasi-hero.star {
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1),
    rgba(251, 191, 36, 0.05)
  );
  border: none;
  min-height: 160px;
  padding: 40px 50px;
  border-radius: 0;
}

/* SHAPE: RIBBON */
.motivasi-hero.ribbon {
  border-radius: 0;
  border: none;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.06),
    rgba(124, 58, 237, 0.06)
  );
  padding: 24px 32px;
}

.motivasi-hero.ribbon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 20px solid rgba(124, 58, 237, 0.1);
}

.motivasi-hero.ribbon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid rgba(251, 191, 36, 0.1);
}

/* DECORATIVE STARS */
.motivasi-hero .deco-star {
  position: absolute;
  font-size: 18px;
  color: rgba(251, 191, 36, 0.08);
  animation: floatStar 6s ease-in-out infinite;
  pointer-events: none;
}

.motivasi-hero .deco-star:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  font-size: 24px;
}
.motivasi-hero .deco-star:nth-child(2) {
  top: 70%;
  right: 8%;
  animation-delay: 2s;
  font-size: 32px;
}
.motivasi-hero .deco-star:nth-child(3) {
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
  font-size: 20px;
}
.motivasi-hero .deco-star:nth-child(4) {
  top: 30%;
  right: 25%;
  animation-delay: 1s;
  font-size: 28px;
}

/* CONTENT */
.motivasi-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  flex-wrap: nowrap;
}

.motivasi-hero-icon {
  font-size: 44px;
  animation: bounceIcon 2.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(251, 191, 36, 0.2));
  flex-shrink: 0;
  line-height: 1;
}

.motivasi-hero-quote {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50%;
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--text-primary),
    var(--primary),
    var(--secondary),
    var(--text-primary)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
  letter-spacing: 0.5px;
  flex-shrink: 1;
  min-width: 0;
}

.motivasi-hero-quote::before {
  content: '"';
  color: var(--primary);
  font-size: 30px;
  -webkit-text-fill-color: initial;
}

.motivasi-hero-quote::after {
  content: '"';
  color: var(--primary);
  font-size: 30px;
  -webkit-text-fill-color: initial;
}

.motivasi-hero-pesan {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 35%;
  flex-shrink: 1;
  min-width: 0;
  animation: slideInLeft 0.8s ease 0.5s both;
}

/* ANIMATIONS */
@keyframes floatBanner {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes bounceIcon {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.3) rotate(-15deg);
  }
  75% {
    transform: scale(1.3) rotate(15deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.05);
  }
  50% {
    box-shadow:
      0 0 80px rgba(251, 191, 36, 0.15),
      0 0 120px rgba(124, 58, 237, 0.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -300% center;
  }
  100% {
    background-position: 300% center;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatStar {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) rotate(180deg) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================
   TOGGLE MODE
========================================== */
.mode-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  background: var(--bg-card);
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.5s ease;
  position: relative;
  z-index: 1;
}

.mode-toggle {
  display: flex;
  background: var(--bg-input);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.mode-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.mode-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mode-btn:hover::after {
  width: 60%;
}

.mode-btn.active::after {
  width: 80%;
}

.mode-btn .mode-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.mode-btn:hover .mode-icon {
  transform: scale(1.2) rotate(10deg);
}

.mode-btn.active {
  background: var(--primary);
  color: #0f172a;
  font-weight: 600;
}

.mode-btn.active .mode-icon {
  animation: bounceIcon 1.5s ease-in-out infinite;
}

.mode-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  animation: slideInRight 0.5s ease;
}

/* ==========================================
   JADWAL GRID
========================================== */
.jadwal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .jadwal-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   JADWAL CARD
========================================== */
.animated-card {
  opacity: 0;
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animated-card:nth-child(1) {
  animation-delay: 0.05s;
}
.animated-card:nth-child(2) {
  animation-delay: 0.1s;
}
.animated-card:nth-child(3) {
  animation-delay: 0.15s;
}
.animated-card:nth-child(4) {
  animation-delay: 0.2s;
}
.animated-card:nth-child(5) {
  animation-delay: 0.25s;
}
.animated-card:nth-child(6) {
  animation-delay: 0.3s;
}
.animated-card:nth-child(7) {
  animation-delay: 0.35s;
}
.animated-card:nth-child(8) {
  animation-delay: 0.4s;
}
.animated-card:nth-child(9) {
  animation-delay: 0.45s;
}
.animated-card:nth-child(10) {
  animation-delay: 0.5s;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-5deg);
  }
  60% {
    transform: scale(1.05) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.jadwal-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.jadwal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: left 0.6s ease;
}

.jadwal-card:hover::before {
  left: 100%;
}

.jadwal-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--primary);
  box-shadow: 0 16px 50px rgba(124, 58, 237, 0.2);
}

.jadwal-card:hover .card-header {
  background: var(--bg-hover);
}

/* ==========================================
   CARD HEADER
========================================== */
.card-header {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease;
}

.mapel-header {
  background: rgba(56, 189, 248, 0.08);
  border-left: 4px solid var(--secondary);
}

.kelas-header {
  background: rgba(124, 58, 237, 0.08);
  border-left: 4px solid var(--primary);
}

.informatika-header {
  background: rgba(52, 211, 153, 0.12);
  border-left: 4px solid #34d399;
}

.informatika-card {
  border-color: #34d399 !important;
  animation: pulseGlow 3s ease-in-out infinite !important;
}

.mapel-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mapel-name::before {
  content: "📌";
  font-size: 14px;
  animation: sparkle 2s ease-in-out infinite;
}

.kelas-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kelas-name .kelas-icon {
  font-size: 20px;
  animation: bounceIcon 2s ease-in-out infinite;
  display: inline-block;
}

.mapel-count,
.kelas-count {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.jadwal-card:hover .mapel-count,
.jadwal-card:hover .kelas-count {
  background: rgba(124, 58, 237, 0.15);
  color: var(--primary-light);
}

.card-body {
  padding: 0;
  overflow-x: auto;
}

/* ==========================================
   TABLE
========================================== */
.jadwal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.jadwal-table thead {
  background: rgba(255, 255, 255, 0.02);
}

.jadwal-table th {
  padding: 10px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-color);
}

.jadwal-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.jadwal-table tbody tr {
  transition: all 0.3s ease;
}

.jadwal-table tbody tr:hover {
  background: var(--bg-hover);
  transform: scale(1.01);
}

.jadwal-table tbody tr:last-child td {
  border-bottom: none;
}

/* ==========================================
   HARI TAG
========================================== */
.hari-tag {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hari-tag.sabtu {
  background: rgba(56, 189, 248, 0.15);
  color: var(--secondary);
}

.hari-tag.sabtu:hover {
  background: var(--secondary);
  color: #0f172a;
  transform: scale(1.05);
}

.hari-tag.minggu {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.hari-tag.minggu:hover {
  background: #fbbf24;
  color: #0f172a;
  transform: scale(1.05);
}

.hari-tag.rabu {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

.hari-tag.rabu:hover {
  background: #34d399;
  color: #0f172a;
  transform: scale(1.05);
}

/* ==========================================
   NOTE GABUNGAN
========================================== */
.note-gabungan {
  display: inline-block;
  font-size: 10px;
  color: var(--primary);
  background: rgba(124, 58, 237, 0.1);
  padding: 1px 10px;
  border-radius: 12px;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .note-gabungan {
    display: block;
    white-space: normal;
    margin-top: 4px;
    font-size: 9px;
    padding: 2px 8px;
  }
}

/* ==========================================
   CATATAN
========================================== */
.jadwal-catatan {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border-color);
  margin-top: 8px;
  animation: slideInLeft 0.6s ease 0.3s both;
  position: relative;
  z-index: 1;
}

.jadwal-catatan h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jadwal-catatan h4::before {
  content: "📌";
  animation: sparkle 2s ease-in-out infinite;
}

.jadwal-catatan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}

.jadwal-catatan ul li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: all 0.3s ease;
  animation: slideInRight 0.5s ease both;
}

.jadwal-catatan ul li:nth-child(1) {
  animation-delay: 0.1s;
}
.jadwal-catatan ul li:nth-child(2) {
  animation-delay: 0.2s;
}
.jadwal-catatan ul li:nth-child(3) {
  animation-delay: 0.3s;
}
.jadwal-catatan ul li:nth-child(4) {
  animation-delay: 0.4s;
}
.jadwal-catatan ul li:nth-child(5) {
  animation-delay: 0.5s;
}

.jadwal-catatan ul li:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.jadwal-catatan ul li strong {
  color: var(--text-primary);
}

/* ==========================================
   ANIMATIONS
========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 768px) {
  .motivasi-hero {
    min-height: 80px;
    padding: 16px 20px;
  }
  .motivasi-hero-content {
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
  }
  .motivasi-hero-icon {
    font-size: 28px;
  }
  .motivasi-hero-quote {
    font-size: 16px;
    white-space: normal;
    max-width: 100%;
    text-align: center;
    -webkit-text-fill-color: var(--text-primary);
    background: none;
    animation: none;
    display: block;
    width: 100%;
  }
  .motivasi-hero-quote::before,
  .motivasi-hero-quote::after {
    font-size: 18px;
  }
  .motivasi-hero-pesan {
    font-size: 13px;
    white-space: normal;
    max-width: 100%;
    text-align: center;
    animation: none;
    display: block;
    width: 100%;
  }
  .motivasi-hero.oval,
  .motivasi-hero.circle,
  .motivasi-hero.wave,
  .motivasi-hero.bubble,
  .motivasi-hero.star,
  .motivasi-hero.ribbon {
    border-radius: var(--radius);
    clip-path: none;
    aspect-ratio: auto;
    max-width: 100%;
    min-height: 80px;
    padding: 14px 20px;
  }
  .motivasi-hero.wave::before,
  .motivasi-hero.wave::after,
  .motivasi-hero.bubble::before,
  .motivasi-hero.ribbon::before,
  .motivasi-hero.ribbon::after {
    display: none;
  }

  .mode-toggle-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 16px;
  }
  .mode-toggle {
    justify-content: center;
  }
  .mode-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .mode-label {
    text-align: center;
    font-size: 13px;
  }
  .jadwal-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card-header {
    padding: 10px 14px;
  }
  .mapel-name,
  .kelas-name {
    font-size: 14px;
  }
  .jadwal-table {
    font-size: 13px;
  }
  .jadwal-table th,
  .jadwal-table td {
    padding: 8px 12px;
  }
  .jadwal-catatan ul {
    grid-template-columns: 1fr;
  }
  .jadwal-catatan {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .motivasi-hero {
    min-height: 60px;
    padding: 10px 14px;
  }
  .motivasi-hero-icon {
    font-size: 20px;
  }
  .motivasi-hero-quote {
    font-size: 13px;
  }
  .motivasi-hero-pesan {
    font-size: 11px;
  }
  .mode-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  .mode-btn .mode-icon {
    font-size: 14px;
  }
  .jadwal-table {
    font-size: 12px;
  }
  .jadwal-table th,
  .jadwal-table td {
    padding: 6px 10px;
  }
  .hari-tag {
    font-size: 10px;
    padding: 1px 8px;
  }
}
