/* ============================================================
   SCHICHTPLAN - Hauptstylesheet
   Design: Professionell, clean, salon-appropriate
   Farben: Navy/Slate mit warmem Akzent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Mono:wght@400;500&display=swap');

/* ── Custom Properties ── */
:root {
  --navy:       #1F3A5F;
  --navy-deep:  #152A47;
  --navy-mid:   #2A4A70;
  --sky:        #3D82C4;
  --sky-light:  #6BA3D6;
  --sky-pale:   #EBF4FF;
  --slate:      #64748B;
  --slate-light:#94A3B8;
  --slate-pale: #F1F5F9;
  --white:      #FFFFFF;
  --ink:        #1E293B;
  --ink-soft:   #334155;

  --success:    #16A34A;
  --success-bg: #DCFCE7;
  --warning:    #D97706;
  --warning-bg: #FEF3C7;
  --danger:     #DC2626;
  --danger-bg:  #FEE2E2;
  --info:       #0891B2;
  --info-bg:    #CFFAFE;
  --purple:     #7C3AED;
  --purple-bg:  #EDE9FE;

  /* Schicht-Farben */
  --shift-I:      #D5F5E3;
  --shift-I-text: #1E8449;
  --shift-I-border:#A9DFBF;
  --shift-II:     #D6EAF8;
  --shift-II-text:#1A5276;
  --shift-II-border:#AED6F1;
  --shift-F:      #FADBD8;
  --shift-F-text: #C0392B;
  --shift-U:      #E8DAEF;
  --shift-U-text: #6C3483;
  --shift-W:      #EBF5FB;
  --shift-W-text: #1A5276;
  --shift-CLOSED: #EAECEE;
  --shift-CLOSED-text: #7F8C8D;
  --shift-HOLIDAY:#F0F0F0;
  --shift-HOLIDAY-text:#7F8C8D;

  --sidebar-w:  260px;
  --topbar-h:   64px;
  --radius:     10px;
  --radius-sm:  6px;
  --shadow:     0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);

  --font:       'DM Sans', system-ui, sans-serif;
  --font-mono:  'DM Mono', monospace;
  --transition: 150ms cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--ink); background: var(--slate-pale); line-height: 1.5; min-height: 100vh; }

/* ── Layout ── */
.app-layout { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform var(--transition);
}

.sidebar-logo {
  padding: 22px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 12px;
}
.sidebar-logo .logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--sky) 0%, #5B9FD4 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.sidebar-logo .logo-text { color: var(--white); font-weight: 600; font-size: .95rem; line-height: 1.3; }
.sidebar-logo .logo-sub  { color: var(--sky-light); font-size: .72rem; }

.sidebar-nav { flex: 1; overflow-y: auto; padding: 12px 0; }
.nav-section { padding: 12px 16px 4px; }
.nav-section-label { font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--sky-light); opacity: .6; }

.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; margin: 1px 8px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .875rem; font-weight: 400;
  transition: all var(--transition);
  cursor: pointer;
}
.nav-item:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-item.active { background: var(--sky); color: var(--white); font-weight: 600; }
.nav-item .nav-icon { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.nav-badge {
  margin-left: auto;
  background: var(--danger);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
}

.sidebar-footer {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.user-card { display: flex; align-items: center; gap: 10px; }
.user-avatar {
  width: 34px; height: 34px;
  background: var(--sky);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: var(--white); flex-shrink: 0;
}
.user-name  { color: var(--white); font-size: .82rem; font-weight: 600; }
.user-role  { color: var(--sky-light); font-size: .7rem; }
.user-logout { margin-left: auto; color: rgba(255,255,255,.4); font-size: 1rem; text-decoration: none; transition: color var(--transition); }
.user-logout:hover { color: var(--danger); }

/* ── Main Content ── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex; flex-direction: column;
  min-width: 0;
}

.topbar {
  height: var(--topbar-h);
  background: var(--white);
  border-bottom: 1px solid #E2E8F0;
  display: flex; align-items: center;
  padding: 0 28px;
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow);
  gap: 16px;
}
.topbar-title { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.topbar-subtitle { font-size: .8rem; color: var(--slate); }
.topbar-actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--slate); }

.page-body { padding: 28px; flex: 1; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-header {
  padding: 18px 22px;
  border-bottom: 1px solid #F1F5F9;
  display: flex; align-items: center; gap: 12px;
}
.card-title { font-size: .95rem; font-weight: 600; color: var(--ink); }
.card-subtitle { font-size: .78rem; color: var(--slate); margin-top: 2px; }
.card-body { padding: 22px; }
.card-footer { padding: 14px 22px; border-top: 1px solid #F1F5F9; background: var(--slate-pale); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .85rem; font-weight: 500;
  cursor: pointer; border: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--sky); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); }
.btn-navy      { background: var(--navy); color: var(--white); }
.btn-navy:hover{ background: var(--navy-deep); }
.btn-success   { background: var(--success); color: var(--white); }
.btn-danger    { background: var(--danger); color: var(--white); }
.btn-warning   { background: var(--warning); color: var(--white); }
.btn-ghost     { background: transparent; color: var(--slate); border-color: #CBD5E1; }
.btn-ghost:hover{ background: var(--slate-pale); color: var(--ink); }
.btn-sm        { padding: 5px 11px; font-size: .78rem; }
.btn-lg        { padding: 11px 22px; font-size: .95rem; }
.btn:disabled  { opacity: .5; cursor: not-allowed; }

/* ── Form Elements ── */
.form-group { margin-bottom: 18px; }
label { display: block; font-size: .82rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 6px; }
label .required { color: var(--danger); margin-left: 2px; }
.form-control, .form-select {
  width: 100%; padding: 9px 13px;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .88rem; color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus, .form-select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(61,130,196,.15);
}
.form-text { font-size: .75rem; color: var(--slate); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
textarea.form-control { min-height: 90px; resize: vertical; }

/* ── Alerts & Status ── */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: .85rem; display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.alert-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: var(--success-bg); color: #14532D; border: 1px solid #BBF7D0; }
.alert-danger  { background: var(--danger-bg);  color: #991B1B; border: 1px solid #FECACA; }
.alert-warning { background: var(--warning-bg); color: #92400E; border: 1px solid #FDE68A; }
.alert-info    { background: var(--info-bg);    color: #164E63; border: 1px solid #A5F3FC; }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: .72rem; font-weight: 600;
}
.badge-success  { background: var(--success-bg); color: var(--success); }
.badge-danger   { background: var(--danger-bg);  color: var(--danger); }
.badge-warning  { background: var(--warning-bg); color: var(--warning); }
.badge-info     { background: var(--info-bg);    color: var(--info); }
.badge-purple   { background: var(--purple-bg);  color: var(--purple); }
.badge-slate    { background: var(--slate-pale);  color: var(--slate); }

/* ── Tables (General) ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .85rem; }
th { background: var(--slate-pale); color: var(--ink-soft); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; padding: 10px 14px; text-align: left; border-bottom: 2px solid #E2E8F0; white-space: nowrap; }
td { padding: 11px 14px; border-bottom: 1px solid #F1F5F9; color: var(--ink); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #FAFBFC; }
.td-actions { display: flex; gap: 6px; align-items: center; }

/* ── Schedule Grid ── */
.schedule-container { overflow-x: auto; border-radius: var(--radius); border: 1px solid #E2E8F0; box-shadow: var(--shadow); }
.schedule-grid { min-width: max-content; background: var(--white); }

.schedule-header-row { display: flex; border-bottom: 2px solid var(--navy); position: sticky; top: 0; z-index: 20; background: var(--white); }
.schedule-col-employee { 
  min-width: 170px; width: 170px;
  background: var(--navy-deep); color: var(--white);
  display: flex; align-items: center;
  padding: 10px 14px;
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  position: sticky; left: 0; z-index: 10;
}
.schedule-day-col {
  min-width: 52px; width: 52px;
  text-align: center; padding: 8px 4px;
  border-left: 1px solid #E2E8F0;
  font-size: .72rem;
}
.day-name  { font-weight: 600; color: var(--ink-soft); }
.day-num   { color: var(--slate); font-size: .68rem; margin-top: 2px; }
.schedule-day-col.weekend { background: #FFF8F0; }
.schedule-day-col.today   { background: var(--sky-pale); }
.schedule-day-col.holiday { background: var(--shift-HOLIDAY); }
.schedule-day-col.closed  { background: var(--shift-CLOSED); }

/* Team-Abschnitt-Header */
.team-section-header {
  display: flex;
  background: var(--navy);
  color: var(--white);
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 6px 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Mitarbeiterzeile */
.employee-row {
  display: flex;
  border-bottom: 1px solid #F1F5F9;
  transition: background var(--transition);
}
.employee-row:hover { background: #FAFBFF; }

.employee-name-cell {
  min-width: 170px; width: 170px;
  display: flex; align-items: center; gap: 9px;
  padding: 6px 14px;
  background: var(--slate-pale);
  border-right: 2px solid #E2E8F0;
  position: sticky; left: 0; z-index: 5;
}
.emp-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.emp-name { font-size: .8rem; font-weight: 500; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.emp-area-badge { font-size: .62rem; color: var(--slate); background: var(--white); border: 1px solid #E2E8F0; border-radius: 4px; padding: 1px 5px; }

/* Schicht-Zelle */
.shift-cell {
  min-width: 52px; width: 52px;
  height: 52px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-left: 1px solid #E2E8F0;
  border-bottom: 1px solid #F1F5F9;
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
  user-select: none;
}
.shift-cell:hover { z-index: 1; transform: scale(1.06); box-shadow: var(--shadow-md); border-radius: 4px; }
.shift-cell.editable { cursor: pointer; }
.shift-cell .shift-code { font-size: .72rem; font-weight: 700; }
.shift-cell .shift-sub  { font-size: .58rem; opacity: .75; margin-top: 1px; }
.shift-cell .conflict-dot { position: absolute; top: 3px; right: 3px; width: 6px; height: 6px; background: var(--danger); border-radius: 50%;; cursor: help; z-index: 2; }

/* Schicht-Farben */
.sc-I      { background: var(--shift-I);      color: var(--shift-I-text); }
.sc-II     { background: var(--shift-II);     color: var(--shift-II-text); }
.sc-I5     { background: var(--shift-I);      color: var(--shift-I-text); }
.sc-II5    { background: var(--shift-II);     color: var(--shift-II-text); }
.sc-NICOLE { background: #D4E6F1;             color: #1A5276; }
.sc-F      { background: var(--shift-F);      color: var(--shift-F-text); }
.sc-F_UNB  { background: #FDFD96;            color: #7D6608; }
.sc-U      { background: var(--shift-U);      color: var(--shift-U-text); }
.sc-W      { background: var(--shift-W);      color: var(--shift-W-text); }
.sc-GB     { background: #FDEBD0;            color: #784212; }
.sc-X      { background: #FEF9E7;            color: #7D6608; }
.sc-CLOSED { background: var(--shift-CLOSED); color: var(--shift-CLOSED-text); }
.sc-HOLIDAY{ background: var(--shift-HOLIDAY);color: var(--shift-HOLIDAY-text); }
.sc-empty  { background: #FAFAFA; }

/* ── Shift Picker Modal ── */
.shift-picker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding: 16px;
}
.shift-option {
  padding: 10px 8px; border-radius: 8px;
  text-align: center; cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  font-size: .8rem; font-weight: 600;
}
.shift-option:hover { transform: scale(1.05); border-color: var(--sky); }
.shift-option.selected { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(31,58,95,.2); }
.shift-option.system-code { opacity: .65; }
.shift-option.system-code:hover { opacity: .85; }
a.emp-name:hover { color: var(--sky) !important; text-decoration: underline !important; }

/* Multi-Select */
.shift-cell.multi-selected {
  outline: 3px solid #3B82F6 !important;
  outline-offset: -2px;
  box-shadow: inset 0 0 0 9999px rgba(59,130,246,.15) !important;
  z-index: 1;
}
.shift-cell.multi-selected .shift-code { font-weight: 900; }

/* ── Legend ── */
.legend { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.legend-item { display: flex; align-items: center; gap: 5px; font-size: .75rem; color: var(--ink-soft); }
.legend-swatch { width: 22px; height: 16px; border-radius: 4px; border: 1px solid rgba(0,0,0,.1); }

/* ── Dashboard Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.stat-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid #E2E8F0; box-shadow: var(--shadow);
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.stat-label { font-size: .75rem; font-weight: 500; color: var(--slate); text-transform: uppercase; letter-spacing: .05em; }
.stat-value { font-size: 2rem; font-weight: 700; color: var(--ink); line-height: 1.1; }
.stat-sub   { font-size: .78rem; color: var(--slate); }
.stat-icon  { font-size: 1.6rem; margin-bottom: 4px; }

/* ── Status Pills ── */
.status-draft    { background: #FEF3C7; color: #92400E; }
.status-internal { background: #DBEAFE; color: #1E40AF; }
.status-published{ background: var(--success-bg); color: var(--success); }
.status-open     { background: var(--slate-pale); color: var(--slate); }
.status-reviewing{ background: #DBEAFE; color: #1E40AF; }
.status-approved { background: var(--success-bg); color: var(--success); }
.status-rejected { background: var(--danger-bg); color: var(--danger); }
.status-conditional{ background: var(--warning-bg); color: var(--warning); }

/* ── Conflict Panel ── */
.conflict-panel { background: var(--danger-bg); border: 1px solid #FECACA; border-radius: var(--radius-sm); padding: 12px 16px; }
.conflict-item { display: flex; gap: 8px; align-items: flex-start; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,.05); font-size: .82rem; color: #991B1B; }
.conflict-item:last-child { border-bottom: none; }
.conflict-item.warning { color: #92400E; }
.conflict-item.info    { color: #164E63; }

/* ── Modal ── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.5);
  backdrop-filter: blur(3px);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 540px; width: calc(100% - 40px);
  max-height: 90vh;
  overflow: auto;
  animation: modalIn .2s cubic-bezier(.34,1.56,.64,1);
}
.modal-lg { max-width: 780px; }
@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(-10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  padding: 18px 22px;
  border-bottom: 1px solid #F1F5F9;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-title { font-size: 1rem; font-weight: 600; }
.modal-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--slate); padding: 4px; border-radius: 4px; transition: background var(--transition); }
.modal-close:hover { background: var(--slate-pale); }
.modal-body   { padding: 22px; }
.modal-footer { padding: 16px 22px; border-top: 1px solid #F1F5F9; display: flex; justify-content: flex-end; gap: 10px; }

/* ── Tabs ── */
.tabs { display: flex; border-bottom: 2px solid #E2E8F0; gap: 0; margin-bottom: 20px; }
.tab { padding: 10px 18px; cursor: pointer; font-size: .875rem; font-weight: 500; color: var(--slate); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all var(--transition); }
.tab:hover { color: var(--sky); }
.tab.active { color: var(--sky); border-bottom-color: var(--sky); }

/* ── Month Navigator ── */
.month-nav { display: flex; align-items: center; gap: 12px; }
.month-nav-btn { background: var(--white); border: 1px solid #E2E8F0; border-radius: var(--radius-sm); padding: 7px 12px; cursor: pointer; color: var(--slate); transition: all var(--transition); font-size: .9rem; }
.month-nav-btn:hover { background: var(--sky-pale); color: var(--sky); border-color: var(--sky); }
.month-label { font-size: 1.1rem; font-weight: 700; color: var(--ink); min-width: 160px; text-align: center; }

/* ── Loading ── */
.loading { display: flex; align-items: center; justify-content: center; padding: 40px; }
.spinner { width: 32px; height: 32px; border: 3px solid #E2E8F0; border-top-color: var(--sky); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Tooltip ── */
.has-tooltip { position: relative; }
.tooltip-text {
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--white);
  font-size: .72rem; padding: 5px 9px; border-radius: 5px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity var(--transition); z-index: 50;
}
.has-tooltip:hover .tooltip-text { opacity: 1; }

/* ── Login Page ── */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.login-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,.25);
  padding: 44px 40px;
  width: 100%; max-width: 420px;
}
.login-logo {
  text-align: center; margin-bottom: 32px;
}
.login-logo-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 14px;
}
.login-title { font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.login-sub   { font-size: .85rem; color: var(--slate); margin-top: 4px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  :root { --sidebar-w: 0px; }
  .sidebar { transform: translateX(-260px); width: 260px; }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .mobile-menu-btn { display: block; }
  .page-body { padding: 16px; }
  .topbar { padding: 0 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .login-card { padding: 30px 22px; }
}

/* ── Utilities ── */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.text-sm { font-size: .82rem; }
.text-xs { font-size: .72rem; }
.text-slate { color: var(--slate); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.text-right { text-align: right; }
.fw-600 { font-weight: 600; }
.w-full { width: 100%; }
.ml-auto { margin-left: auto; }

/* Print */
@media print {
  .sidebar, .topbar, .btn, .modal-backdrop { display: none !important; }
  .main-content { margin-left: 0 !important; }
  .schedule-container { overflow: visible; }
}
