:root {
  --navy-950: #071426;
  --navy-900: #0a2f62;
  --navy-800: #124985;
  --navy-700: #1e5d9b;
  --gold: #c99a32;
  --gold-light: #f1cd72;
  --red: #bf1e2e;
  --red-dark: #8f1420;
  --black: #111111;
  --cream: #f4f5f7;
  --paper: #ffffff;
  --white: #ffffff;
  --ink: #171717;
  --muted: #62676d;
  --line: #d8dadd;
  --green: #176b45;
  --amber: #a56d0b;
  --shadow: 0 20px 60px rgba(7, 20, 38, .13);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hidden { display: none !important; }

.ambient {
  position: fixed;
  z-index: 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .16;
}

.ambient-one { top: -180px; right: 20%; background: var(--gold); }
.ambient-two { bottom: -180px; left: -100px; background: var(--red); }

.login-page {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(620px, 62%) minmax(380px, 38%);
  min-height: 100vh;
}

.brand-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 44px clamp(34px, 4vw, 68px);
  color: var(--white);
  background:
    linear-gradient(90deg, transparent 0 45%, rgba(4, 16, 31, .08) 58%, rgba(4, 16, 31, .5) 100%),
    url("assets/portal-colaborador-aguia.png") center / cover no-repeat,
    var(--navy-950);
}

.brand-panel::before,
.brand-panel::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(214, 165, 75, .15);
  border-radius: 50%;
}

.brand-panel::before { width: 480px; height: 480px; right: -260px; top: -160px; }
.brand-panel::after { width: 650px; height: 650px; left: -390px; bottom: -380px; }

.brand-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(214, 165, 75, .5);
  background: rgba(255, 255, 255, .04);
  color: var(--gold-light);
}

.brand-mark svg { width: 38px; height: 38px; stroke-width: 1.6; }
.brand-mark.small { width: 42px; height: 42px; flex: 0 0 auto; }
.brand-mark.small svg { width: 25px; height: 25px; }

.brand-copy {
  position: relative;
  z-index: 1;
  width: min(48%, 560px);
  margin: auto 0 auto auto;
  padding-left: clamp(24px, 3vw, 48px);
  border-left: 5px solid var(--gold);
}
.brand-copy::before {
  position: absolute;
  top: 42px;
  right: 0;
  left: 34px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(201, 154, 50, 0));
}
.eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow.dark { color: var(--red); }
.eyebrow.light { color: var(--gold-light); }

.brand-copy h1 {
  margin: 26px 0 22px;
  padding: 0;
  border: 0;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 5.2vw, 82px);
  line-height: .86;
  letter-spacing: -.04em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .35), 0 0 30px rgba(18, 73, 133, .34);
}

.brand-copy h1 span { color: var(--white); }
.brand-copy h1 em {
  color: var(--gold-light);
  font-style: normal;
  text-shadow: 2px 2px 0 #805d18, 0 0 24px rgba(241, 205, 114, .22);
}
.brand-copy p {
  max-width: 430px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.45;
}
.brand-copy p strong { color: var(--gold-light); }

.brand-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9dafb9;
  font-size: 12px;
}

.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #67c68f; box-shadow: 0 0 0 5px rgba(103, 198, 143, .09); }

.login-panel {
  display: grid;
  place-items: center;
  padding: 48px;
  background: var(--paper);
}

.login-card { width: min(100%, 440px); }
.mobile-logo { display: none; }
.login-card h2 { margin: 0 0 10px; color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 38px; letter-spacing: -.03em; }
.login-subtitle { margin: 0 0 40px; color: var(--muted); font-size: 14px; }

label { display: inline-block; margin-bottom: 9px; color: var(--ink); font-size: 12px; font-weight: 700; }
.label-row { display: flex; align-items: center; justify-content: space-between; margin-top: 23px; }
.label-row label { margin: 0; }

.input-wrap { position: relative; }
.input-wrap > svg {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 19px;
  transform: translateY(-50%);
  color: #89949a;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #d6ddde;
  border-radius: 3px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}

input, select { height: 51px; padding: 0 16px; }
textarea { resize: vertical; padding: 14px 16px; }
.input-wrap input { padding-left: 48px; padding-right: 48px; }
.uppercase-input { text-transform: uppercase; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214, 165, 75, .13); }
input[readonly] { cursor: not-allowed; border-color: #e1e4e3; background: #f3f4f1; color: #59676e; }

.icon-button {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 0;
  background: transparent;
  color: #7c898f;
  transform: translateY(-50%);
}

.icon-button svg { width: 19px; }
.text-button { padding: 0; border: 0; background: transparent; color: var(--red); font-size: 11px; font-weight: 800; }
.text-button:hover { color: var(--navy-800); }

.primary-button, .outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s, background .2s, box-shadow .2s;
}

.primary-button {
  width: 100%;
  margin-top: 28px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(201, 154, 50, .22);
}

.primary-button:hover { border-color: var(--gold-light); background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 13px 28px rgba(201, 154, 50, .3); }
.primary-button svg { width: 18px; }
.primary-button.compact { width: auto; min-height: 44px; margin: 0; padding: 0 18px; }

.outline-button { border: 1px solid #cfd7d9; background: transparent; color: var(--ink); }
.outline-button:hover { border-color: var(--navy-800); }
.light-outline { width: 100%; border-color: rgba(255,255,255,.28); color: white; }
.light-outline:hover { border-color: var(--gold-light); }

.form-error { min-height: 18px; margin: 9px 0 -16px; color: #b54444; font-size: 12px; }
.demo-hint { margin: 14px 0 0; color: #8c979c; text-align: center; font-size: 10px; }
.field-hint { display: block; margin-top: 6px; color: var(--muted); font-size: 9px; }
.support-copy { margin: 42px 0 0; color: var(--muted); text-align: center; font-size: 11px; }

button:disabled { cursor: wait; opacity: .62; transform: none !important; }

.dashboard { position: relative; z-index: 1; display: grid; grid-template-columns: 256px 1fr; min-height: 100vh; }

.sidebar {
  position: fixed;
  z-index: 20;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 256px;
  padding: 28px 20px 22px;
  background: linear-gradient(180deg, var(--black) 0%, var(--navy-950) 48%, var(--navy-900) 100%);
  color: white;
}

.sidebar-brand { display: flex; align-items: center; gap: 12px; padding: 0 8px 35px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-home-link { width: 100%; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.admin-home-link:hover strong { color: var(--gold-light); }
.admin-home-link:hover .eagle-mark { border-color: rgba(241,205,114,.95); box-shadow: 0 0 0 3px rgba(201,154,50,.14), 0 12px 30px rgba(0,0,0,.3); transform: translateY(-1px); }
.sidebar-brand strong, .sidebar-brand span { display: block; }
.sidebar-brand strong { font-family: "Playfair Display", serif; font-size: 15px; }
.sidebar-brand span { margin-top: 3px; color: var(--gold-light); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.eagle-mark { position: relative; z-index: 1; display: block; flex: 0 0 auto; width: 64px; height: 64px; overflow: hidden; border: 1px solid rgba(241,205,114,.65); border-radius: 50%; background: #071426; box-shadow: 0 8px 22px rgba(0,0,0,.24); transition: .25s ease; }
.eagle-mark img { width: 100%; height: 100%; object-fit: cover; object-position: 34% center; transform: scale(1.72); transform-origin: 34% center; }
.hero-eagle-mark { width: 82px; height: 82px; box-shadow: 0 16px 38px rgba(0,0,0,.32); }
.mobile-eagle-mark { width: 42px; height: 42px; }
.collaborator-eagle-mark { width: 64px; height: 64px; }

.main-nav { display: grid; gap: 6px; margin-top: 30px; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #9fb0ba;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition: .2s;
}

.nav-item svg { width: 19px; }
.nav-item:hover { color: white; background: rgba(255,255,255,.05); }
.nav-item.active { color: white; background: rgba(191, 30, 46, .24); box-shadow: inset 3px 0 var(--red), inset 6px 0 var(--gold); }

.sidebar-help { margin-top: auto; padding: 18px; border: 1px solid rgba(214, 165, 75, .2); background: rgba(255,255,255,.03); }
.sidebar-help span { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.sidebar-help p { margin: 9px 0 14px; color: #a9b7be; font-size: 11px; line-height: 1.5; }
.sidebar-help button { padding: 0; border: 0; background: transparent; color: white; font-size: 10px; font-weight: 800; }

.logout-button { display: flex; align-items: center; gap: 11px; margin-top: 20px; padding: 14px 12px 0; border: 0; border-top: 1px solid rgba(255,255,255,.08); background: transparent; color: #8297a2; font-size: 11px; }
.logout-button:hover { color: white; }
.logout-button svg { width: 18px; }

.main-content { grid-column: 2; min-width: 0; }
.topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, .94);
  backdrop-filter: blur(14px);
}

.topbar-title span, .topbar-title strong { display: block; }
.topbar-title span { margin-bottom: 3px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.topbar-title strong { color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 18px; }
.profile { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.notification-button { position: relative; display: grid; place-items: center; width: 40px; height: 40px; margin-right: 10px; border: 0; border-radius: 50%; background: #f0eee8; color: var(--navy-800); }
.notification-button svg { width: 18px; }
.notification-button span { position: absolute; top: 7px; right: 8px; width: 6px; height: 6px; border: 1px solid var(--paper); border-radius: 50%; background: var(--red); }
.avatar { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; background: var(--navy-800); color: var(--gold-light); font-size: 11px; font-weight: 800; }
.profile-copy strong, .profile-copy span { display: block; }
.profile-copy strong { font-size: 11px; }
.profile-copy span { margin-top: 3px; color: var(--muted); font-size: 9px; }
.menu-button { display: none; border: 0; background: transparent; color: var(--navy-900); }
.menu-button svg { width: 23px; }

.content-shell { padding: 44px 4vw 60px; }
.page-section { display: none; max-width: 1260px; margin: auto; animation: pageIn .35s ease both; }
.page-section.active { display: block; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } }

.welcome-row, .section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.welcome-row .eyebrow, .section-heading .eyebrow { margin-bottom: 9px; }
.welcome-row h2, .section-heading h2 { margin: 0; color: var(--navy-900); font-family: "Playfair Display", serif; font-size: clamp(31px, 3vw, 42px); letter-spacing: -.03em; }
.welcome-row h2 span { color: var(--red); }
.welcome-row h2 .welcome-name-highlight {
  display: inline;
  padding: 0;
  background: transparent;
  color: var(--gold-light);
  text-shadow: 0 1px 0 var(--red), 0 0 14px rgba(241,205,114,.28);
  text-transform: uppercase;
}
.welcome-row h2 .welcome-work-highlight { color: var(--red); text-shadow: 0 1px 0 rgba(255,255,255,.45); }
.welcome-row p, .section-heading p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.birthday-greeting, .birthday-alert { margin: 0 0 24px; padding: 20px 22px; border-left: 4px solid var(--gold); background: #fff7df; box-shadow: 0 8px 28px rgba(19,45,59,.06); }
.birthday-greeting > strong, .birthday-alert > div > strong { display: block; margin-top: 5px; color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 24px; }
.birthday-greeting p, .birthday-alert p { margin: 7px 0 0; color: var(--navy-800); font-size: 12px; line-height: 1.45; text-align: left; }
.birthday-highlight, .birthday-recipient-name { display: inline; margin: 0; font-family: inherit; font-size: inherit; line-height: inherit; }
.birthday-highlight { color: var(--red); font-weight: 900; letter-spacing: .02em; }
.birthday-recipient-name { color: var(--gold); font-weight: 900; letter-spacing: .04em; }
.birthday-paragraph-break { display: block; height: 8px; }
.birthday-dismiss-button { margin-top: 15px; background: white; }
.birthday-alert { display: flex; align-items: center; justify-content: space-between; gap: 18px; border-left-color: var(--red); }
.birthday-alert .outline-button { min-width: 150px; background: white; }
.profile-completion-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
  padding: 20px 22px;
  border-left: 4px solid var(--red);
  background: #fff8ef;
  box-shadow: 0 8px 28px rgba(19,45,59,.06);
}
.profile-completion-alert > div:first-child { min-width: 0; }
.profile-completion-alert strong {
  display: block;
  margin-top: 5px;
  color: var(--navy-900);
  font-family: "Playfair Display", serif;
  font-size: 24px;
}
.profile-completion-alert p {
  margin: 7px 0 0;
  color: var(--navy-800);
  font-size: 12px;
  line-height: 1.55;
}
.profile-completion-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.profile-completion-actions .outline-button, .profile-completion-actions .primary-button { min-width: 145px; justify-content: center; background: white; }
.profile-completion-actions .primary-button { background: var(--red); color: var(--white); }

.available-section { margin-bottom: 24px; padding: 27px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 8px 28px rgba(19, 45, 59, .045); }
.available-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.available-heading .eyebrow { margin-bottom: 6px; }
.available-heading h3 { margin: 0; color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 25px; }
.availability-controls { display: flex; align-items: center; gap: 9px; }
.availability-controls label { margin: 0; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.availability-controls input { width: 145px; height: 38px; padding: 0 9px; font-size: 10px; }
.available-count { padding: 7px 11px; border-radius: 30px; background: #fff4d7; color: var(--black); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.location-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.location-card { position: relative; display: flex; flex-direction: column; min-height: 330px; padding: 21px; overflow: hidden; border: 1px solid #dce3e4; background: #fbfcfa; transition: border-color .2s, box-shadow .2s, transform .2s; }
.location-card::after { position: absolute; right: -38px; top: -38px; width: 110px; height: 110px; border: 1px solid rgba(214, 165, 75, .18); border-radius: 50%; content: ""; }
.location-card:hover { border-color: var(--gold); box-shadow: 0 14px 34px rgba(10, 47, 98, .13); transform: translateY(-2px); }
.location-si-sticker {
  position: absolute;
  z-index: 1;
  top: 13px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 50%;
  background: #eef3f5;
  color: var(--black);
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 8px 18px rgba(7,20,38,.1);
}
.location-si-sticker-local-1 { background: #f3d76a; color: var(--black); }
.location-si-sticker-local-2 { background: #d8dcdf; color: var(--black); }
.location-si-sticker-local-3 { background: #df7777; color: var(--black); }
.location-si-sticker-local-4 { background: #1f1f1f; color: white; }
.location-si-sticker-local-7 { background: #91c894; color: var(--black); }
.location-si-sticker-local-8 { background: #83add8; color: var(--black); }
.location-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.location-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--navy-900); color: var(--gold-light); }
.location-icon svg { width: 23px; }
.location-date { text-align: right; }
.location-date strong, .location-date span { display: block; }
.location-date strong { color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 20px; }
.location-date span { margin-top: 2px; color: var(--muted); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.location-card h4 { margin: 20px 0 5px; color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 18px; line-height: 1.25; }
.location-place { min-height: 30px; margin: 0; color: var(--muted); font-size: 9px; line-height: 1.5; }
.location-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0 10px; }
.location-options label { margin: 0; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.location-options label.full { grid-column: 1 / -1; }
.location-options select { height: 39px; margin-top: 6px; padding: 0 9px; font-size: 10px; }
.fixed-service { margin: 16px 0 15px; padding: 17px 15px; border-left: 3px solid var(--gold); background: var(--navy-900); color: white; }
.fixed-service span, .fixed-service strong, .fixed-service small { display: block; }
.fixed-service span { color: var(--gold-light); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.fixed-service strong { margin-top: 6px; font-size: 15px; }
.fixed-service small { margin-top: 5px; color: #aebdc4; font-size: 8px; }
.location-slot { display: flex; align-items: center; gap: 9px; margin: 0 0 15px; padding: 11px 12px; background: #f0f3f2; color: var(--navy-800); }
.location-slot svg { width: 17px; color: var(--red); }
.location-slot strong { display: block; font-size: 11px; }
.location-slot span { display: block; margin-top: 2px; color: var(--muted); font-size: 8px; }
.location-card .outline-button { width: 100%; min-height: 40px; margin-top: auto; }
.location-card .launch-button { border-width: 1px; color: var(--black); box-shadow: inset 0 -2px rgba(0,0,0,.08); }
.location-card .launch-button:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(7,20,38,.12); }
.location-card .launch-button-local-1 { border-color: #d6aa1b; background: #f3d76a; color: var(--black); }
.location-card .launch-button-local-2 { border-color: #aeb4b8; background: #d8dcdf; color: var(--black); }
.location-card .launch-button-local-3 { border-color: #b74747; background: #df7777; color: var(--black); }
.location-card .launch-button-local-4 { border-color: var(--black); background: #1f1f1f; color: white; }
.location-card .launch-button-local-7 { border-color: #4f8a55; background: #91c894; color: var(--black); }
.location-card .launch-button-local-8 { border-color: #4b77a7; background: #83add8; color: var(--black); }
.simple-location-card { min-height: 175px; justify-content: space-between; }
.simple-location-card h4 { margin: 0; max-width: 90%; font-size: 20px; }
.location-card .outline-button.unavailable { border-color: #e0e3e2; background: #f1f2ef; color: #8e999e; }
.availability-note { display: block; min-height: 14px; margin: -7px 0 10px; color: var(--green); font-size: 8px; font-weight: 700; }
.availability-note.busy { color: #a93d3d; }
.available-empty { grid-column: 1 / -1; padding: 35px 20px; border: 1px dashed #ccd5d6; color: var(--muted); text-align: center; }
.available-empty svg { width: 34px; margin-bottom: 9px; color: var(--red); }
.available-empty strong, .available-empty span { display: block; }
.available-empty strong { margin-bottom: 5px; color: var(--navy-800); font-size: 12px; }
.available-empty span { font-size: 10px; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 18px; }
.stat-card { position: relative; display: flex; align-items: center; min-height: 138px; padding: 25px; overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: 0 8px 28px rgba(19, 45, 59, .045); }
.stat-card.accent::after { position: absolute; right: 0; top: 0; width: 4px; height: 100%; content: ""; background: linear-gradient(var(--red) 0 50%, var(--gold) 50%); }
.stat-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-right: 18px; border-radius: 50%; background: #eef3f5; color: var(--navy-700); }
.stat-icon.green { background: #eaf5ef; color: var(--green); }
.stat-icon.amber { background: #fbf2df; color: var(--amber); }
.stat-icon svg { width: 21px; }
.stat-card span, .stat-card strong, .stat-card small { display: block; }
.stat-card span { margin-bottom: 5px; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.stat-card strong { color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 29px; line-height: 1; }
.stat-card strong.stat-date { font-family: "Manrope", sans-serif; font-size: 23px; font-weight: 800; }
.stat-card small { margin-top: 8px; color: #89959a; font-size: 9px; }
.stat-card small b { color: var(--green); }

.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .85fr); gap: 18px; }
.panel { border: 1px solid var(--line); background: var(--white); box-shadow: 0 8px 28px rgba(19, 45, 59, .045); }
.panel-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 27px 19px; }
.panel-header .eyebrow { margin-bottom: 6px; }
.panel h3 { margin: 0; color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 23px; }
.view-all { font-size: 10px; }

.daily-item { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 15px; padding: 18px 27px; border-top: 1px solid #edf0ef; }
.date-box { display: grid; place-items: center; width: 48px; height: 48px; background: #f0f2f1; }
.date-box span, .date-box strong { display: block; }
.date-box span { color: var(--red); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.date-box strong { color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 20px; line-height: 1; }
.daily-copy strong, .daily-copy span { display: block; }
.daily-copy strong { margin-bottom: 4px; font-size: 11px; }
.daily-copy span { color: var(--muted); font-size: 9px; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 30px; background: #eaf5ef; color: var(--green); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.status-pill::before { width: 5px; height: 5px; border-radius: 50%; content: ""; background: currentColor; }
.status-pill.pending { background: #fbf2df; color: var(--amber); }

.schedule-highlight { padding-bottom: 23px; background: var(--navy-800); color: white; }
.schedule-highlight .panel-header { padding-bottom: 13px; }
.schedule-highlight h3 { color: white; }
.calendar-icon { display: grid; place-items: center; width: 48px; height: 52px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); }
.calendar-icon span { width: 100%; padding: 3px; background: var(--gold); color: var(--navy-950); text-align: center; font-size: 7px; font-weight: 800; }
.calendar-icon strong { font-family: "Playfair Display", serif; font-size: 20px; }
.shift-info { padding: 8px 27px 21px; }
.shift-badge { display: inline-block; margin-bottom: 13px; padding: 5px 8px; background: rgba(214, 165, 75, .14); color: var(--gold-light); font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.shift-info h4 { margin: 0 0 9px; font-family: "Playfair Display", serif; font-size: 19px; }
.shift-info p { display: flex; align-items: flex-start; gap: 7px; margin: 0; color: #aebdc4; font-size: 9px; line-height: 1.5; }
.shift-info p svg { flex: 0 0 auto; width: 14px; }
.shift-time { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.04); }
.shift-time div { text-align: center; }
.shift-time span, .shift-time strong { display: block; }
.shift-time span { margin-bottom: 4px; color: #8fa2ac; font-size: 8px; text-transform: uppercase; }
.shift-time strong { font-size: 16px; }
.shift-time > svg { width: 19px; color: var(--gold-light); }
.schedule-highlight > button { width: calc(100% - 54px); margin: 0 27px; }

.financial-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 20px; }
.financial-summary article { padding: 22px 25px; border: 1px solid var(--line); background: var(--navy-800); color: white; box-shadow: 0 8px 28px rgba(19,45,59,.08); }
.financial-summary span, .financial-summary strong, .financial-summary small { display: block; }
.financial-summary span { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.financial-summary strong { margin-top: 8px; font-family: "Playfair Display", serif; font-size: 28px; }
.financial-summary small { margin-top: 5px; color: #acbbc2; font-size: 9px; }
.payslip-panel { margin-bottom: 20px; }
.payslip-panel .panel-header strong { color: var(--navy-900); font-size: 22px; }
.payslip-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 0 27px 25px; }
.payslip-metrics article { border: 1px solid var(--line); padding: 14px 16px; background: #f8fbfb; }
.payslip-metrics span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.payslip-metrics strong { display: block; margin-top: 6px; color: var(--navy-900); font-size: 20px; }
.profile-form-panel { padding: 24px 27px; }
.profile-form-panel .modal-actions { padding: 6px 0 0; border-top: 0; }
.profile-fieldset { margin: 0 0 22px; padding: 0 0 22px; border: 0; border-bottom: 1px solid var(--line); }
.profile-fieldset:last-of-type { margin-bottom: 10px; }
.profile-fieldset legend { margin-bottom: 14px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.account-settings-form { display: grid; gap: 10px; align-content: start; padding: 16px; border: 1px solid var(--line); background: #fbfbf8; }
.account-settings-form .outline-button { justify-self: start; margin-top: 4px; }
.admin-reset-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.admin-reset-actions .outline-button { min-height: 40px; }
.compact-settings-grid { grid-template-columns: minmax(280px, 520px); }

.work-calendar { margin-bottom: 20px; overflow: hidden; }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 25px; border-bottom: 1px solid var(--line); }
.calendar-toolbar .eyebrow { margin-bottom: 5px; }
.calendar-toolbar h3 { margin: 0; color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 23px; }
.calendar-navigation { display: flex; align-items: center; gap: 12px; }
.calendar-navigation button { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); background: white; color: var(--navy-800); }
.calendar-navigation button:hover { border-color: var(--gold); }
.calendar-navigation button svg { width: 16px; }
.calendar-navigation strong { min-width: 135px; color: var(--navy-800); font-size: 11px; text-align: center; text-transform: capitalize; }
.calendar-weekdays, .work-calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.calendar-weekdays { border-bottom: 1px solid var(--line); background: #f8f7f3; }
.calendar-weekdays span { padding: 10px 6px; color: var(--muted); font-size: 8px; font-weight: 800; text-align: center; text-transform: uppercase; }
.calendar-day { min-height: 112px; padding: 9px; border-right: 1px solid #edf0ef; border-bottom: 1px solid #edf0ef; background: white; }
.calendar-day:nth-child(7n) { border-right: 0; }
.calendar-day.outside { background: #fafaf8; }
.calendar-day.today .calendar-day-number { background: var(--navy-900); color: var(--gold-light); }
.calendar-day-number { display: grid; place-items: center; width: 24px; height: 24px; margin-bottom: 6px; border-radius: 50%; color: var(--muted); font-size: 9px; font-weight: 800; }
.calendar-entry { display: block; margin-top: 5px; padding: 7px; border-left: 2px solid var(--red); background: #fff7e4; }
.calendar-entry strong, .calendar-entry span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.calendar-entry strong { color: var(--navy-800); font-size: 8px; }
.calendar-entry span { margin-top: 3px; color: var(--muted); font-size: 7px; }
.calendar-more { display: block; margin-top: 5px; color: var(--red); font-size: 7px; font-weight: 800; }

.table-panel { overflow: hidden; }
.filters { display: flex; align-items: center; gap: 12px; padding: 22px; border-bottom: 1px solid var(--line); }
.search-box { position: relative; flex: 1 1 420px; min-width: 280px; }
.search-box svg { position: absolute; top: 50%; left: 14px; width: 18px; color: var(--muted); transform: translateY(-50%); }
.search-box input { min-width: 0; padding-left: 42px; color: var(--ink); font-size: 13px; }
.filter-summary { margin: 12px 22px 14px; color: var(--muted); font-size: 12px; font-weight: 700; line-height: 1.45; }
.filters > input[type="month"] { flex: 0 0 220px; width: 220px; }
.filters select { width: 190px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 16px 22px; border-bottom: 1px solid #edf0ef; text-align: left; white-space: nowrap; }
th { background: #f8f7f3; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
td { font-size: 11px; }
td strong { color: var(--navy-800); }
.empty-row td { padding: 50px 20px; color: var(--muted); text-align: center; }
.delete-daily-button { padding: 7px 10px; border: 1px solid #e3bcbc; background: #fff8f8; color: #a93d3d; font-size: 9px; font-weight: 800; }
.delete-daily-button:hover { border-color: #a93d3d; background: #a93d3d; color: white; }
.edit-daily-button { padding: 7px 10px; margin-right: 5px; border: 1px solid #667eea; background: #f0f4ff; color: #667eea; font-size: 9px; font-weight: 800; }
.edit-daily-button:hover { border-color: #667eea; background: #667eea; color: white; }
.locked-daily { color: #929da2; font-size: 9px; }

.schedule-list { display: grid; gap: 15px; }
.schedule-card { display: grid; grid-template-columns: 110px 1.2fr .8fr auto; align-items: center; gap: 25px; padding: 24px 27px; border: 1px solid var(--line); background: white; box-shadow: 0 8px 28px rgba(19,45,59,.045); }
.schedule-date { border-right: 1px solid var(--line); }
.schedule-date span, .schedule-date strong { display: block; }
.schedule-date span { margin-bottom: 3px; color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.schedule-date strong { font-family: "Playfair Display", serif; font-size: 28px; }
.schedule-place strong, .schedule-place span, .schedule-hours strong, .schedule-hours span { display: block; }
.schedule-place strong { margin-bottom: 6px; font-size: 12px; }
.schedule-place span, .schedule-hours span { color: var(--muted); font-size: 9px; }
.schedule-hours strong { margin-bottom: 6px; color: var(--navy-800); font-size: 13px; }
.schedule-confirmed { padding: 7px 10px; border-radius: 30px; background: #eaf5ef; color: var(--green); font-size: 8px; font-weight: 800; text-transform: uppercase; }

.modal { width: min(92vw, 610px); max-height: 90vh; padding: 0; overflow-y: auto; border: 0; border-radius: 4px; color: var(--ink); box-shadow: var(--shadow); }
.modal::backdrop { background: rgba(4, 20, 31, .72); backdrop-filter: blur(3px); }
.modal form { padding: 30px; }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; }
.modal-header .eyebrow { margin-bottom: 6px; }
.modal h2 { margin: 0; color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 30px; }
.modal > form > p { margin: 10px 0 25px; color: var(--muted); font-size: 11px; }
.modal-close { display: grid; place-items: center; width: 36px; height: 36px; border: 0; background: #f1f1ed; color: var(--navy-900); }
.modal-close svg { width: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; }
.series-date-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.series-date-row .outline-button { min-height: 51px; white-space: nowrap; }
.series-date-list { display: flex; flex-wrap: wrap; gap: 8px; min-height: 32px; margin-top: 10px; }
.series-date-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 9px; border: 1px solid rgba(201,154,50,.45); background: #fff8e8; color: var(--navy-900); font-size: 10px; font-weight: 800; }
.series-date-chip button { display: grid; place-items: center; width: 18px; height: 18px; border: 0; border-radius: 50%; background: var(--red); color: white; font-size: 11px; line-height: 1; }
.series-summary { margin-top: 10px; padding: 10px 12px; border-left: 3px solid var(--gold); background: #f5f6f7; color: var(--navy-900); font-size: 10px; font-weight: 800; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }

.toast { position: fixed; z-index: 100; right: 25px; bottom: 25px; max-width: 340px; padding: 15px 19px; border-left: 3px solid var(--gold); background: var(--navy-900); color: white; box-shadow: var(--shadow); font-size: 11px; opacity: 0; transform: translateY(20px); pointer-events: none; transition: .3s; }
.toast.show { opacity: 1; transform: translateY(0); }
.sidebar-overlay { display: none; }

.admin-app { position: relative; z-index: 2; display: grid; grid-template-columns: 256px 1fr; min-height: 100vh; background: var(--cream); }
.admin-sidebar { position: fixed; inset: 0 auto 0 0; display: flex; flex-direction: column; width: 256px; padding: 28px 20px 22px; overflow-y: auto; background: linear-gradient(180deg, var(--black), var(--navy-950) 52%, var(--navy-900)); color: white; }
.admin-sidebar .logout-button { margin-top: auto; }
.admin-main { grid-column: 2; min-width: 0; }
.admin-content { padding: 42px 4vw 60px; }
.admin-page { display: none; max-width: 1380px; margin: auto; animation: pageIn .3s ease both; }
.admin-page.active { display: block; }
.admin-overview-heading-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.admin-overview-heading-row .eyebrow { margin-bottom: 0; }
.month-selector { display: inline-flex; align-items: center; gap: 8px; min-height: 34px; margin: 0; padding: 5px 9px 5px 11px; border: 1px solid var(--line); border-left: 3px solid var(--gold); background: white; box-shadow: 0 8px 22px rgba(19,45,59,.045); }
.month-selector span { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.month-selector input { width: 130px; height: 24px; padding: 0; border: 0; background: transparent; color: var(--navy-900); font: inherit; font-size: 11px; font-weight: 800; outline: none; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 20px; }
.admin-stat-grid article { padding: 24px; border-top: 3px solid var(--red); border-bottom: 2px solid var(--gold); background: white; box-shadow: 0 8px 28px rgba(19,45,59,.06); }
.admin-stat-grid span, .admin-stat-grid strong { display: block; }
.admin-stat-grid span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.admin-stat-grid strong { margin-top: 10px; color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 27px; }
.admin-recent-panel { overflow: hidden; }
.admin-recent-row { display: grid; grid-template-columns: 1.2fr 1fr .7fr .6fr; gap: 15px; padding: 16px 25px; border-top: 1px solid var(--line); font-size: 10px; }
.admin-recent-row strong { color: var(--navy-800); }
.admin-recent-row span { color: var(--muted); }
.admin-worker-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-worker-card { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 15px; padding: 20px; border-top: 3px solid var(--gold); background: white; box-shadow: 0 8px 28px rgba(19,45,59,.06); }
.admin-worker-avatar { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--navy-900); color: var(--gold-light); font-weight: 800; }
.admin-worker-copy strong, .admin-worker-copy span, .admin-worker-copy small { display: block; }
.admin-worker-copy strong { color: var(--navy-950); font-size: 12px; }
.admin-worker-copy span { margin-top: 3px; color: var(--muted); font-size: 9px; }
.admin-worker-copy small { margin-top: 6px; color: var(--red); font-size: 8px; font-weight: 800; }
.admin-worker-copy .password-admin-note { color: var(--navy-800); font-weight: 700; }
.admin-worker-copy .profile-status { display: inline-flex; width: fit-content; max-width: 100%; padding: 4px 7px; border-radius: 999px; font-size: 7px; line-height: 1.1; }
.admin-worker-copy .profile-status.complete { background: #e7f6eb; color: #267429; }
.admin-worker-copy .profile-status.pending { background: #fff0d6; color: #9b5a00; }
.birthday-panel { padding: 24px; }
.birthday-month-field { margin: 0; }
.birthday-month-field span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.birthday-month-field input { min-width: 190px; }
.birthday-today-list { margin-bottom: 16px; }
.birthday-today-card { padding: 18px 20px; border-left: 4px solid var(--red); background: #fff0d6; }
.birthday-today-card strong, .birthday-today-card span, .birthday-today-card p { display: block; }
.birthday-today-card strong { margin-top: 5px; color: var(--navy-900); font-size: 17px; }
.birthday-today-card p { margin: 5px 0 0; color: var(--muted); font-size: 10px; }
.birthday-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.birthday-card { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 14px; padding: 17px; border-top: 3px solid var(--gold); background: #fbfcfa; box-shadow: 0 8px 24px rgba(19,45,59,.05); }
.birthday-card.today { border-top-color: var(--red); background: #fff7df; }
.birthday-avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy-900); color: var(--gold-light); font-weight: 800; }
.birthday-card strong, .birthday-card span, .birthday-card small { display: block; }
.birthday-card strong { color: var(--navy-950); font-size: 12px; }
.birthday-card span { margin-top: 3px; color: var(--muted); font-size: 9px; }
.birthday-card small { margin-top: 6px; color: var(--navy-800); font-size: 8px; font-weight: 800; }
.birthday-message-label { display: block; margin-top: 12px; color: var(--red); font-size: 8px; font-style: normal; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.birthday-message { margin: 10px 0 0; padding: 12px 14px; border-left: 3px solid var(--gold); background: white; color: var(--navy-800); font-size: 10px; line-height: 1.42; text-align: left; }
.birthday-message .birthday-highlight,
.birthday-message .birthday-recipient-name { display: inline; margin: 0; font-family: inherit; font-size: inherit; line-height: inherit; }
.birthday-card b { padding: 6px 8px; border-radius: 999px; background: var(--red); color: white; font-size: 8px; text-transform: uppercase; }
.worker-preference-preview { grid-column: 2 / -1; display: flex; flex-wrap: wrap; gap: 5px; }
.worker-preference-preview span { padding: 5px 7px; background: #fff7e4; color: var(--navy-800); font-size: 7px; }
.admin-worker-actions { grid-column: 2 / -1; display: flex; flex-wrap: wrap; gap: 8px; }
.admin-worker-actions .outline-button, .admin-worker-actions .delete-daily-button { min-height: 36px; }
.preference-list { display: grid; gap: 7px; margin-top: 20px; }
.preference-item { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 10px 12px; border-left: 3px solid var(--gold); background: #f5f6f7; }
.preference-item strong, .preference-item span { display: block; }
.preference-item strong { color: var(--navy-900); font-size: 9px; }
.preference-item span { margin-top: 3px; color: var(--muted); font-size: 8px; }
.preference-item button { border: 0; background: transparent; color: var(--red); font-size: 8px; font-weight: 800; }
.preference-empty { color: var(--muted); font-size: 9px; text-align: center; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.admin-actions .outline-button, .admin-actions .primary-button { min-height: 42px; }
.admin-sheet tfoot td { background: var(--navy-900); color: white; font-weight: 800; }
.admin-sheet tfoot td:first-child { text-align: right; }
.monthly-closing-panel { margin-top: 22px; padding: 20px; border: 2px solid var(--black); background: #fff; box-shadow: 0 8px 28px rgba(19,45,59,.06); }
.monthly-brand-header { display: flex; align-items: center; gap: 16px; margin-bottom: 15px; padding: 13px 16px; overflow: hidden; border-bottom: 4px solid var(--gold); background: linear-gradient(105deg, var(--black), var(--navy-950) 60%, var(--navy-900)); color: white; }
.monthly-brand-image { width: 94px; height: 68px; overflow: hidden; border: 1px solid rgba(241,205,114,.5); background: var(--navy-950); }
.monthly-brand-image img { width: 100%; height: 100%; object-fit: cover; object-position: 27% center; }
.monthly-brand-header span, .monthly-brand-header strong, .monthly-brand-header small { display: block; }
.monthly-brand-header span { color: var(--gold-light); font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.monthly-brand-header strong { margin-top: 4px; font-family: "Playfair Display", serif; font-size: 24px; }
.monthly-brand-header small { margin-top: 5px; color: #d7dde2; font-size: 9px; }
.monthly-closing-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; padding: 12px 16px; border: 2px solid var(--black); background: #fbfbfb; }
.monthly-closing-header h3 { margin: 0; color: var(--black); font-size: 22px; font-style: italic; font-weight: 900; text-align: center; text-transform: uppercase; }
.monthly-closing-header p { margin: 5px 0 0; color: var(--muted); font-size: 10px; }
.monthly-closing-total { min-width: 210px; padding: 10px 14px; border-left: 4px solid var(--gold); background: var(--navy-950); color: white; text-align: right; }
.monthly-closing-total span, .monthly-closing-total strong, .monthly-closing-total small { display: block; }
.monthly-closing-total span { color: var(--gold-light); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.monthly-closing-total strong { margin-top: 5px; font-size: 18px; }
.monthly-closing-total small { margin-top: 4px; color: #dbe6ea; font-size: 10px; font-weight: 800; }
.monthly-worker-summary { display: grid; grid-template-columns: repeat(5, minmax(150px, 1fr)); gap: 17px 28px; padding: 12px 6px; background-image: linear-gradient(#e5e5e5 1px, transparent 1px), linear-gradient(90deg, #e5e5e5 1px, transparent 1px); background-size: 56px 22px; }
.monthly-worker-card { display: grid; grid-template-columns: 1fr 72px; overflow: hidden; border: 1px solid var(--black); background: white; }
.monthly-worker-card div { min-width: 0; }
.monthly-worker-card strong, .monthly-worker-card b { display: flex; align-items: center; justify-content: center; min-height: 28px; padding: 4px 8px; border-bottom: 1px solid var(--black); font-size: 11px; font-weight: 900; line-height: 1.1; text-align: center; text-transform: uppercase; }
.monthly-worker-card strong { overflow: hidden; background: #d9d9d9; color: var(--black); text-overflow: ellipsis; white-space: nowrap; }
.monthly-worker-card.accent strong { background: #a9c8ca; }
.monthly-worker-card b { border-left: 1px solid var(--black); background: #f7f7f7; color: #2c1578; font-size: 13px; }
.monthly-worker-card span { display: block; grid-column: 1 / -1; padding: 5px 8px; color: red; font-size: 10px; font-style: italic; font-weight: 700; text-align: center; }
.monthly-worker-card .monthly-worker-amount { margin: 4px 6px 6px; padding: 7px 8px; border: 1px solid #267429; background: #eef8ef; color: #17611b; font-size: 13px; font-style: normal; font-weight: 900; }
.monthly-closing-footer { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; width: min(100%, 420px); margin: 18px auto 0; border: 2px solid var(--black); }
.monthly-closing-footer article { display: grid; grid-template-columns: 1fr; padding: 8px 14px; border-right: 1px solid var(--black); background: #f3f3f3; text-align: center; }
.monthly-closing-footer article:last-child { border-right: 0; }
.monthly-closing-footer span { color: var(--red); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.monthly-closing-footer strong { margin-top: 4px; color: #267429; font-size: 13px; }
.monthly-closing-footer small { margin-top: 4px; color: #267429; font-size: 10px; font-weight: 800; }
.location-projection-panel { margin-top: 18px; border: 1px solid var(--black); background: white; }
.location-projection-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 14px; border-bottom: 1px solid var(--black); background: #f3f3f3; }
.location-projection-heading span { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.location-projection-heading strong { color: #267429; font-size: 14px; }
.location-projection-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; padding: 12px; }
.location-projection-card { min-width: 0; overflow: hidden; padding: 10px; border: 1px solid #8d9699; background: #fbfbfb; }
.location-projection-card > strong { display: block; color: var(--navy-950); font-size: 10px; text-transform: uppercase; word-break: break-word; }
.location-projection-card > span { display: block; margin-top: 4px; color: var(--muted); font-size: 8px; word-break: break-word; }
.location-projection-card div { display: grid; grid-template-columns: .85fr 1fr 1fr; gap: 5px; margin-top: 8px; align-items: center; }
.location-projection-card small { color: var(--red); font-size: 7px; font-weight: 900; text-transform: uppercase; }
.location-projection-card b { color: #2c1578; font-size: 8px; word-break: break-word; }
.location-projection-card em { color: red; font-size: 8px; font-style: italic; font-weight: 800; text-align: right; word-break: break-word; }
.street-map-toolbar { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; padding: 15px 18px; border: 1px solid var(--line); background: white; }
.street-map-toolbar label { margin: 0; color: var(--navy-800); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.street-map-toolbar input { width: 175px; height: 40px; }
.street-map-toolbar span { margin-left: auto; color: var(--muted); font-size: 10px; font-weight: 700; }
.street-map-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.street-map-card { min-width: 0; overflow: hidden; border: 1px solid #aeb7ba; background: white; box-shadow: 0 8px 28px rgba(19,45,59,.06); }
.street-map-card header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; border-bottom: 1px solid #8d9699; background: #f8f7f3; }
.street-map-card h3 { margin: 0; color: var(--red); font-size: 12px; text-transform: uppercase; }
.street-map-card header span { color: var(--muted); font-size: 9px; font-weight: 800; white-space: nowrap; }
.street-map-table-wrap { overflow-x: auto; }
.street-map-table { min-width: 520px; table-layout: fixed; }
.street-map-table th, .street-map-table td { height: 36px; padding: 5px 6px; border-right: 1px solid #aeb7ba; border-bottom: 1px solid #aeb7ba; text-align: center; white-space: normal; }
.street-map-table thead th { background: #f1f1ef; color: var(--navy-900); font-size: 8px; letter-spacing: 0; }
.street-map-table thead th:first-child, .street-map-table tbody th { width: 42px; }
.street-map-table tbody th { background: #f8f8f6; color: var(--navy-800); font-size: 9px; }
.street-map-table tr > *:last-child { border-right: 0; }
.street-map-table tbody tr:last-child > * { border-bottom: 0; }
.street-map-empty { color: #b2b8ba; font-size: 9px; }
.street-map-available-btn {
  display: block;
  width: 100%;
  padding: 4px 2px;
  background: none;
  border: 1px dashed #e53935;
  border-radius: 3px;
  color: #e53935;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  transition: background 0.12s, color 0.12s;
}
.street-map-available-btn:hover { background: #e53935; color: #fff; border-color: #e53935; }
.street-map-entry strong, .street-map-entry span { display: block; }
.street-map-entry strong { color: var(--navy-900); font-size: 8px; line-height: 1.25; text-transform: uppercase; }
.street-map-entry span { margin-top: 2px; color: var(--muted); font-size: 7px; }
.street-map-entry + .street-map-entry { margin-top: 4px; padding-top: 4px; border-top: 1px dashed #c8cecf; }
.street-map-draggable { cursor: grab; transition: opacity 0.15s, box-shadow 0.15s; border-radius: 3px; }
.street-map-draggable:active { cursor: grabbing; }
.street-map-draggable:hover { background: #eef2ff; box-shadow: 0 1px 4px rgba(102,126,234,0.25); }
.street-map-drop-target { transition: background 0.12s; }
.street-map-drop-target.drag-over { background: #dbe8ff !important; outline: 2px dashed #667eea; outline-offset: -2px; }
.schedule-week-filter { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding: 14px 17px; border: 1px solid var(--line); background: white; }
.schedule-week-filter label { margin: 0; }
.schedule-week-filter input,
.schedule-week-filter select { width: 230px; height: 40px; }
.schedule-week-filter .outline-button.compact { min-height: 40px; padding: 0 14px; white-space: nowrap; }
.weekly-sheet { padding: 24px; overflow-x: auto; border: 1px solid #cfd5d6; background: white; box-shadow: 0 8px 28px rgba(19,45,59,.06); }
.schedule-document-header { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 20px; margin-bottom: 20px; padding: 15px 18px; overflow: hidden; border-bottom: 4px solid var(--gold); background: linear-gradient(105deg, var(--black), var(--navy-950) 55%, var(--navy-900)); color: white; }
.schedule-company-sketch { width: 112px; height: 82px; overflow: hidden; border: 1px solid rgba(241,205,114,.5); background: var(--navy-950); }
.schedule-company-sketch img { width: 100%; height: 100%; object-fit: cover; object-position: 27% center; }
.schedule-document-brand span, .schedule-document-brand strong, .schedule-document-brand small,
.schedule-document-meta span, .schedule-document-meta strong, .schedule-document-meta small { display: block; }
.schedule-document-brand span { color: var(--gold-light); font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.schedule-document-brand strong { margin-top: 4px; font-family: "Playfair Display", serif; font-size: 22px; }
.schedule-document-brand small { margin-top: 5px; color: #d7dde2; font-size: 8px; }
.schedule-document-meta { min-width: 205px; padding-left: 18px; border-left: 1px solid rgba(241,205,114,.45); text-align: right; }
.schedule-document-meta strong { color: var(--gold-light); font-size: 13px; text-transform: uppercase; }
.schedule-document-meta span { margin-top: 5px; font-size: 10px; }
.schedule-document-meta small { margin-top: 4px; color: #cbd5dc; font-size: 8px; text-transform: uppercase; }
.weekly-schedule-grid { display: grid; }
.schedule-projection-grid { grid-template-columns: minmax(190px, 1.25fr) repeat(7, minmax(135px, 1fr)); min-width: 1160px; border-top: 1px solid #7f878b; border-left: 1px solid #7f878b; }
.projection-corner, .projection-day-header, .projection-location, .projection-cell { border-right: 1px solid #7f878b; border-bottom: 1px solid #7f878b; }
.projection-corner { padding: 12px; background: var(--navy-950); color: white; }
.projection-corner strong, .projection-corner span, .projection-day-header strong, .projection-day-header span, .projection-location strong, .projection-location span { display: block; }
.projection-corner strong { color: var(--gold-light); font-size: 10px; text-transform: uppercase; }
.projection-corner span { margin-top: 3px; color: #b7c2c9; font-size: 7px; }
.projection-day-header { padding: 10px 5px; background: var(--navy-900); color: white; text-align: center; }
.projection-day-header strong { color: var(--gold-light); font-size: 9px; text-transform: capitalize; }
.projection-day-header span { margin-top: 4px; font-size: 8px; }
.projection-location { padding: 11px 10px; background: #f4f5f7; }
.projection-location strong { color: var(--red); font-size: 9px; line-height: 1.3; text-transform: uppercase; }
.projection-location span { margin-top: 5px; color: var(--muted); font-size: 6px; line-height: 1.35; }
.projection-cell { min-height: 66px; padding: 6px; background: white; }
.projection-assignment { padding: 6px; border-left: 3px solid var(--gold); background: #fff8e8; }
.projection-assignment + .projection-assignment { margin-top: 5px; }
.projection-assignment strong, .projection-assignment span { display: block; }
.projection-assignment strong { color: var(--navy-950); font-size: 7px; line-height: 1.3; text-transform: uppercase; }
.projection-assignment span { margin-top: 3px; color: var(--muted); font-size: 7px; }
.projection-assignment small { display: block; margin-top: 4px; color: var(--red); font-size: 6px; font-weight: 800; text-transform: uppercase; }
.projection-actions { display: flex; gap: 5px; margin-top: 6px; }
.projection-actions button { flex: 1; min-height: 24px; padding: 4px 5px; border: 1px solid rgba(7,20,38,.14); background: white; color: var(--navy-900); font-size: 7px; font-weight: 900; text-transform: uppercase; }
.projection-actions button[data-delete-schedule] { border-color: rgba(191,30,46,.25); color: var(--red); }
.projection-actions button:hover { border-color: var(--gold); background: #fff4d7; }
.projection-empty { display: block; padding-top: 17px; color: #a5aaad; font-size: 7px; text-align: center; }
.schedule-document-footer { display: flex; justify-content: space-between; gap: 20px; margin-top: 14px; padding-top: 9px; border-top: 1px solid var(--line); color: var(--muted); font-size: 7px; }
.schedule-document-footer strong { color: var(--navy-900); text-transform: uppercase; }

@media (max-width: 1050px) {
  .login-page { grid-template-columns: minmax(540px, 58%) minmax(360px, 42%); }
  .brand-copy { width: 50%; padding-left: 24px; }
  .brand-copy h1 { font-size: clamp(40px, 5vw, 62px); }
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .schedule-card { grid-template-columns: 90px 1fr 1fr; }
  .schedule-confirmed { justify-self: start; grid-column: 2; }
  .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-worker-grid { grid-template-columns: 1fr; }
  .birthday-grid { grid-template-columns: 1fr; }
  .monthly-worker-summary { grid-template-columns: repeat(3, minmax(150px, 1fr)); gap: 14px; }
  .monthly-closing-header { align-items: stretch; flex-direction: column; }
  .monthly-closing-total { min-width: 0; text-align: left; }
  .street-map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .login-page { display: block; background: var(--paper); }
  .brand-panel { display: none; }
  .login-panel { min-height: 100vh; padding: 32px 24px; }
  .mobile-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 50px; color: var(--navy-900); font-family: "Playfair Display", serif; font-size: 18px; }
  .dashboard { display: block; }
  .sidebar { transform: translateX(-100%); transition: transform .3s ease; }
  .sidebar.open { transform: translateX(0); }
  .main-content { width: 100%; }
  .menu-button { display: grid; place-items: center; margin-right: 14px; }
  .sidebar-overlay { position: fixed; z-index: 15; inset: 0; width: 100%; border: 0; background: rgba(5, 22, 34, .55); }
  .sidebar-overlay.show { display: block; }
  .content-shell { padding: 32px 22px 50px; }
  .profile-copy { display: none; }
  .notification-button { margin-right: 0; }
  .admin-app { display: block; }
  .admin-sidebar { position: static; width: 100%; height: auto; }
  .admin-sidebar .main-nav { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar .logout-button { margin-top: 20px; }
  .admin-main { width: 100%; }
}

@media (max-width: 600px) {
  .login-card h2 { font-size: 33px; }
  .welcome-row, .section-heading { align-items: stretch; flex-direction: column; gap: 20px; }
  .welcome-row .primary-button, .section-heading .primary-button { width: 100%; }
  .available-section { padding: 21px; }
  .available-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .availability-controls { align-items: flex-start; flex-wrap: wrap; width: 100%; }
  .location-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .financial-summary { grid-template-columns: 1fr; }
  .payslip-metrics { grid-template-columns: 1fr; padding-inline: 18px; }
  .daily-item { grid-template-columns: 50px 1fr; }
  .daily-item .status-pill { grid-column: 2; justify-self: start; }
  .filters { flex-direction: column; }
  .search-box { width: 100%; min-width: 0; }
  .filters > input[type="month"] { flex-basis: auto; width: 100%; }
  .filters select { width: 100%; }
  .birthday-alert { align-items: stretch; flex-direction: column; }
  .birthday-alert .outline-button { width: 100%; }
  .profile-completion-alert { align-items: stretch; flex-direction: column; }
  .profile-completion-actions { align-items: stretch; flex-direction: column; }
  .profile-completion-actions .outline-button, .profile-completion-actions .primary-button { width: 100%; }
  .birthday-card { grid-template-columns: 44px 1fr; }
  .birthday-card b { grid-column: 2; width: fit-content; }
  .calendar-toolbar { align-items: flex-start; flex-direction: column; }
  .calendar-navigation { justify-content: space-between; width: 100%; }
  .calendar-weekdays span { font-size: 7px; }
  .calendar-day { min-height: 82px; padding: 5px; }
  .calendar-entry { padding: 5px; }
  .calendar-entry strong { font-size: 7px; }
  .calendar-entry span { display: none; }
  .schedule-card { grid-template-columns: 70px 1fr; gap: 16px; }
  .schedule-hours { grid-column: 2; }
  .schedule-confirmed { grid-column: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .modal form { padding: 23px; }
  .modal-actions { flex-direction: column-reverse; }
  .modal-actions button { width: 100%; }
  .admin-reset-actions { flex-direction: column; }
  .admin-reset-actions .outline-button { width: 100%; }
  .topbar { padding: 0 18px; }
  .topbar-title span { display: none; }
  .avatar { width: 34px; height: 34px; }
  .admin-content { padding: 30px 18px 45px; }
  .admin-overview-heading-row { align-items: flex-start; flex-direction: column; gap: 10px; }
  .month-selector { width: 100%; justify-content: space-between; }
  .month-selector input { width: 150px; }
  .admin-stat-grid { grid-template-columns: 1fr; }
  .admin-worker-card { grid-template-columns: 45px 1fr; }
  .admin-actions { flex-direction: column; width: 100%; }
  .admin-actions button { width: 100%; }
  .schedule-week-filter { align-items: stretch; flex-direction: column; }
  .schedule-week-filter select,
  .schedule-week-filter .outline-button.compact { width: 100%; }
  .admin-recent-row { grid-template-columns: 1fr; gap: 5px; }
  .monthly-closing-panel { padding: 12px; }
  .monthly-worker-summary { grid-template-columns: 1fr; }
  .monthly-closing-footer { grid-template-columns: 1fr; }
  .monthly-closing-footer article { border-right: 0; border-bottom: 1px solid var(--black); }
  .monthly-closing-footer article:last-child { border-bottom: 0; }
  .street-map-toolbar { align-items: stretch; flex-direction: column; }
  .street-map-toolbar input { width: 100%; }
  .street-map-toolbar span { margin-left: 0; }
}

@media print {
  html, body {
    width: 297mm;
    height: 210mm;
    margin: 0;
    overflow: hidden;
    background: white;
  }
  body.print-schedule .ambient,
  body.print-schedule #loginView,
  body.print-schedule #dashboardView,
  body.print-schedule .admin-sidebar,
  body.print-schedule .topbar,
  body.print-schedule .section-heading,
  body.print-schedule .schedule-week-filter,
  body.print-schedule .admin-page:not(#adminSchedulesPage),
  body.print-schedule #adminSchedulesPage > :not(#printableSchedule) {
    display: none !important;
  }
  body.print-schedule #adminView,
  body.print-schedule .admin-main,
  body.print-schedule .admin-content,
  body.print-schedule #adminSchedulesPage {
    display: block !important;
    position: static !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: white !important;
  }
  body * { visibility: hidden; }
  body.print-schedule #printableSchedule,
  body.print-schedule #printableSchedule *,
  body.print-monthly-closing #monthlyClosingPrintArea,
  body.print-monthly-closing #monthlyClosingPrintArea * { visibility: visible; }
  body.print-schedule #printableSchedule,
  body.print-monthly-closing #monthlyClosingPrintArea {
    position: fixed;
    top: 0;
    left: 0;
    width: 283mm;
    max-width: 283mm;
    height: 196mm;
    max-height: 196mm;
    padding: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    background: white;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  body.print-schedule #printableSchedule {
    display: grid;
    grid-template-rows: 17mm 187mm 6mm;
    position: fixed;
    left: 0;
    width: 297mm;
    max-width: 297mm;
    height: 210mm;
    max-height: 210mm;
    transform: none;
  }
  body.print-monthly-closing #monthlyClosingPrintArea {
    height: auto;
    max-height: 200mm;
    padding: 0;
    overflow: hidden;
    border: 0;
  }
  body.print-monthly-closing .monthly-brand-header { display: flex; height: 18mm; margin-bottom: 1.5mm; padding: 1.5mm 2mm; border-bottom-width: 1.5px; }
  body.print-monthly-closing .monthly-brand-image { width: 20mm; height: 14mm; }
  body.print-monthly-closing .monthly-brand-header strong { font-size: 13px; line-height: 1; }
  body.print-monthly-closing .monthly-brand-header span, body.print-monthly-closing .monthly-brand-header small { font-size: 5.5px; }
  body.print-monthly-closing .monthly-closing-header { margin-bottom: 1.5mm; padding: 1.4mm 2mm; border-width: 1px; }
  body.print-monthly-closing .monthly-closing-header h3 { font-size: 12px; }
  body.print-monthly-closing .monthly-closing-header p, body.print-monthly-closing .monthly-closing-total span { font-size: 5.5px; }
  body.print-monthly-closing .monthly-closing-total { min-width: 38mm; padding: 1.2mm 2mm; }
  body.print-monthly-closing .monthly-closing-total strong { font-size: 9px; }
  body.print-monthly-closing .monthly-worker-summary { grid-template-columns: repeat(5, 1fr); gap: 2mm 3mm; padding: 1mm; background-size: 11mm 5mm; }
  body.print-monthly-closing .monthly-worker-card { grid-template-columns: 1fr 13mm; }
  body.print-monthly-closing .monthly-worker-card strong,
  body.print-monthly-closing .monthly-worker-card b { min-height: 5.5mm; padding: .7mm 1mm; font-size: 5.8px; }
  body.print-monthly-closing .monthly-worker-card span { padding: .8mm 1mm; font-size: 5.4px; }
  body.print-monthly-closing .monthly-closing-footer { width: 82mm; margin: 2mm auto 0; border-width: 1px; }
  body.print-monthly-closing .monthly-closing-footer article { padding: 1mm 2mm; }
  body.print-monthly-closing .monthly-closing-footer span { font-size: 5.2px; }
  body.print-monthly-closing .monthly-closing-footer strong { font-size: 7px; }
  body.print-monthly-closing .monthly-closing-footer small { font-size: 5.5px; }
  body.print-monthly-closing .location-projection-panel { margin-top: 2mm; }
  body.print-monthly-closing .location-projection-heading { padding: 1mm 2mm; }
  body.print-monthly-closing .location-projection-heading span, body.print-monthly-closing .location-projection-heading strong { font-size: 6px; }
  body.print-monthly-closing .location-projection-grid { grid-template-columns: repeat(4, 1fr); gap: 1.2mm; padding: 1.2mm; }
  body.print-monthly-closing .location-projection-card { padding: 1mm; }
  body.print-monthly-closing .location-projection-card > strong { font-size: 5.5px; }
  body.print-monthly-closing .location-projection-card > span,
  body.print-monthly-closing .location-projection-card small,
  body.print-monthly-closing .location-projection-card b,
  body.print-monthly-closing .location-projection-card em { font-size: 4.8px; }
  body.print-monthly-closing .location-projection-card div { gap: 1mm; margin-top: 1mm; }
  body.print-schedule .schedule-document-header {
    grid-template-columns: 22mm 1fr 58mm;
    gap: 2mm;
    height: 17mm;
    margin: 0;
    padding: 1.1mm 2mm;
    border-bottom-width: 1.6px;
  }
  body.print-schedule .schedule-company-sketch { width: 18mm; height: 13mm; }
  body.print-schedule .schedule-document-brand strong { margin-top: .5mm; font-size: 11.5px; line-height: 1; }
  body.print-schedule .schedule-document-brand span,
  body.print-schedule .schedule-document-brand small,
  body.print-schedule .schedule-document-meta small { font-size: 5.4px; line-height: 1; }
  body.print-schedule .schedule-document-brand span { font-size: 6px; }
  body.print-schedule .schedule-document-brand small { margin-top: .5mm; font-size: 5.8px; }
  body.print-schedule .schedule-document-meta strong { font-size: 8px; line-height: 1; }
  body.print-schedule .schedule-document-meta span { margin-top: .6mm; font-size: 6.3px; line-height: 1; }
  body.print-schedule .schedule-document-meta small { margin-top: .45mm; }
  body.print-schedule .schedule-document-meta { min-width: 0; padding-left: 2mm; }
  body.print-schedule .weekly-schedule-grid { width: 100%; height: 187mm; min-width: 0; }
  body.print-schedule .schedule-projection-grid {
    grid-template-columns: 38mm repeat(7, minmax(0, 1fr));
    grid-template-rows: 8.5mm repeat(8, 1fr);
    min-width: 0;
    width: 100%;
    border-color: #555;
  }
  body.print-schedule .projection-corner,
  body.print-schedule .projection-day-header,
  body.print-schedule .projection-location,
  body.print-schedule .projection-cell {
    overflow: hidden;
    border-color: #555;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  body.print-schedule .projection-corner,
  body.print-schedule .projection-day-header {
    height: 8.5mm;
    padding: .8mm;
  }
  body.print-schedule .projection-corner strong,
  body.print-schedule .projection-day-header strong { font-size: 6.6px; line-height: 1; }
  body.print-schedule .projection-corner span,
  body.print-schedule .projection-day-header span { margin-top: .5mm; font-size: 5.4px; line-height: 1; }
  body.print-schedule .projection-location {
    height: auto;
    min-height: 0;
    padding: 1.3mm 1mm;
  }
  body.print-schedule .projection-location strong { font-size: 6.8px; line-height: 1.1; }
  body.print-schedule .projection-location span { display: none; }
  body.print-schedule .projection-cell {
    height: auto;
    min-height: 0;
    padding: 1mm;
  }
  body.print-schedule .projection-assignment {
    padding: 1mm;
    border-left-width: 1.2px;
  }
  body.print-schedule .projection-assignment + .projection-assignment { margin-top: .35mm; }
  body.print-schedule .projection-assignment strong,
  body.print-schedule .projection-assignment span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 6.4px;
    line-height: 1.12;
  }
  body.print-schedule .projection-assignment small { display: none; }
  body.print-schedule .projection-actions { display: none; }
  body.print-schedule .projection-empty { padding-top: 9.2mm; font-size: 5.8px; }
  body.print-schedule .schedule-document-footer {
    align-items: center;
    height: 6mm;
    margin: 0;
    padding: 0 2mm;
    overflow: hidden;
    font-size: 5.8px;
  }
  @page { size: A4 landscape; margin: 0; }
}
