.sp-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(249, 249, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
}
.sp-nav__logo {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: #00478d;
  text-decoration: none;
}
.sp-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.sp-nav__link {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  color: #424752;
  text-decoration: none;
  transition: color 0.2s;
}
.sp-nav__link:hover {
  color: #005eb8;
}
.sp-nav__cta {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.75rem;
  font-weight: 500;
  background: #00478d;
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 8px 24px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sp-nav__cta:hover {
  opacity: 0.88;
}

.login-bg {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f9f9ff;
  background-image: radial-gradient(#d6e3ff 0.5px, transparent 0.5px), radial-gradient(#d6e3ff 0.5px, #f9f9ff 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #191c21;
}

.login-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 32px;
}

.login-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.login-blob {
  position: absolute;
  width: 256px;
  height: 256px;
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}
.login-blob--tl {
  top: -96px;
  left: -96px;
  background: rgba(169, 199, 255, 0.2);
}
.login-blob--br {
  bottom: -96px;
  right: -96px;
  background: rgba(141, 245, 228, 0.2);
}

.login-card {
  position: relative;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 48px;
  border: 1px solid rgba(194, 198, 212, 0.15);
  box-shadow: 0 12px 40px rgba(25, 28, 33, 0.06);
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) {
  .login-card {
    padding: 64px;
  }
}
.login-card__header {
  margin-bottom: 48px;
}
.login-card__title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 2rem;
  font-weight: 800;
  color: #191c21;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  line-height: 1.1;
}
.login-card__subtitle {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  color: #424752;
  margin: 0;
}

.login-alert {
  border-radius: 0.5rem;
  padding: 12px 16px;
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.login-alert--error {
  background: #ffdad6;
  color: #93000a;
}
.login-alert--info {
  background: #cfe6f2;
  color: #526772;
}
.login-alert--info a {
  color: #00478d;
  text-decoration: underline;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login-field__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login-label {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #424752;
}

.login-link {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.75rem;
  color: #00478d;
  text-decoration: none;
}
.login-link:hover {
  text-decoration: underline;
}

.login-input {
  width: 100%;
  box-sizing: border-box;
  background: #f2f3fb;
  border: none;
  border-radius: 0.75rem;
  padding: 16px 24px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1rem;
  color: #191c21;
  outline: none;
  transition: box-shadow 0.2s;
}
.login-input::placeholder {
  color: #727783;
}
.login-input:focus {
  box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.12);
}

.login-remember {
  display: flex;
  align-items: center;
  gap: 12px;
}
.login-remember input[type=checkbox] {
  width: 18px;
  height: 18px;
  border-radius: 0.25rem;
  border: 1.5px solid #c2c6d4;
  accent-color: #00478d;
  cursor: pointer;
  flex-shrink: 0;
}
.login-remember label {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  color: #424752;
  cursor: pointer;
}

.login-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #00478d 0%, #005eb8 100%);
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 71, 141, 0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}
.login-btn:hover {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 71, 141, 0.18);
}
.login-btn .material-symbols-outlined {
  font-size: 1.25rem;
}

.login-card__footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(194, 198, 212, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.login-card__footer p {
  font-size: 0.75rem;
  color: #424752;
  margin: 0;
}

.login-btn-secondary {
  background: #e1e2ea;
  color: #191c21;
  border: none;
  border-radius: 0.75rem;
  padding: 12px 48px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.login-btn-secondary:hover {
  background: #e7e8f0;
}

.login-trust {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 48px;
}

.login-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(66, 71, 82, 0.6);
}
.login-badge .material-symbols-outlined {
  font-size: 1.125rem;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.login-badge span:last-child {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.login-footer {
  padding: 32px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.login-footer__links {
  display: flex;
  gap: 48px;
}
.login-footer__link {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #727783;
  text-decoration: none;
  transition: color 0.2s;
}
.login-footer__link:hover {
  color: #00478d;
}
.login-footer__copy {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #727783;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 32px;
  background: rgba(249, 249, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.topbar__inner-left {
  display: flex;
  align-items: center;
  gap: 32px;
}
.topbar__inner-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar__logo {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.25rem;
  font-weight: 900;
  color: #00478d;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.topbar__nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .topbar__nav {
    display: flex;
  }
}
.topbar__nav-link {
  color: #424752;
  text-decoration: none;
  transition: color 0.3s;
}
.topbar__nav-link:hover {
  color: #005eb8;
}
.topbar__nav-link--active {
  color: #00478d;
  border-bottom: 2px solid #00478d;
  padding-bottom: 0.25rem;
}
.topbar__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  color: #424752;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.topbar__action-btn:hover {
  background: rgba(194, 198, 212, 0.25);
}
.topbar__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  outline: 1px solid rgba(194, 198, 212, 0.3);
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 16rem;
  height: 100vh;
  display: none;
  flex-direction: column;
  padding: 16px;
  padding-top: 5rem;
  gap: 8px;
  background: #f2f3fb;
}
@media (min-width: 1024px) {
  .sidebar {
    display: flex;
  }
}
.sidebar__brand {
  padding-inline: 16px;
  margin-bottom: 24px;
}
.sidebar__brand-title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.125rem;
  font-weight: 800;
  color: #00478d;
}
.sidebar__brand-subtitle {
  font-size: 0.75rem;
  color: #424752;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 2px;
}
.sidebar__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.sidebar__nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0.75rem;
  color: #424752;
  transition: background 0.2s;
}
.sidebar__nav-link:hover {
  background: rgba(194, 198, 212, 0.25);
}
.sidebar__nav-link--active {
  background: linear-gradient(135deg, #00478d 0%, #005eb8 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 71, 141, 0.2);
}
.sidebar__nav-link--active:hover {
  opacity: 0.95;
}
.sidebar__cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #00478d 0%, #005eb8 100%);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 12px 16px;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(25, 28, 33, 0.06);
  transition: opacity 0.15s;
}
.sidebar__cta:hover {
  opacity: 0.9;
}

.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #f2f3fb;
  z-index: 50;
  padding-inline: 16px;
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #424752;
  gap: 2px;
}
.mobile-nav__link--active {
  color: #00478d;
}
.mobile-nav__fab {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00478d 0%, #005eb8 100%);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(25, 28, 33, 0.06);
}

.page-main {
  min-height: 100vh;
  padding-top: 4rem;
}
@media (min-width: 1024px) {
  .page-main {
    padding-left: 16rem;
  }
}

.page-content {
  max-width: 1400px;
  margin-inline: auto;
  padding: 32px;
}

.dash-header {
  margin-bottom: 48px;
}
.dash-header__title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 2rem;
  font-weight: 800;
  color: #191c21;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.dash-header__subtitle {
  font-size: 0.875rem;
  color: #424752;
  font-weight: 500;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .dash-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.flux-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .flux-card {
    grid-column: span 8;
  }
}
.flux-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.flux-card__title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.flux-card__subtitle {
  font-size: 0.75rem;
  color: #424752;
}
.flux-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #005148;
  background: #8df5e4;
  padding: 0.25rem 12px;
  border-radius: 9999px;
}
.flux-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #005148;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  height: 16rem;
  padding-inline: 8px;
  margin-bottom: 16px;
}
.bar-chart__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bar-chart__track {
  width: 100%;
  background: #f2f3fb;
  border-radius: 0.75rem 0.75rem 0 0;
  position: relative;
  height: 10rem;
}
.bar-chart__track:hover .bar-chart__tooltip {
  opacity: 1;
}
.bar-chart__fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0.75rem 0.75rem 0 0;
  background: linear-gradient(135deg, #00478d 0%, #005eb8 100%);
  transition: height 0.5s ease;
}
.bar-chart__fill--weekend {
  background: linear-gradient(to top, #005148, #006b60);
}
.bar-chart__tooltip {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #191c21;
  color: #ffffff;
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  pointer-events: none;
}
.bar-chart__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #424752;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.capacity-card {
  background: linear-gradient(135deg, #00478d 0%, #005eb8 100%);
  color: #ffffff;
  border-radius: 0.75rem;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(25, 28, 33, 0.06);
}
@media (min-width: 768px) {
  .capacity-card {
    grid-column: span 4;
    height: 100%;
  }
}
.capacity-card__label {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a9c7ff;
  margin-bottom: 8px;
}
.capacity-card__value {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}
.capacity-card__desc {
  font-size: 0.75rem;
  color: #d6e3ff;
  margin-top: 4px;
}
.capacity-card__progress-section {
  margin-top: 32px;
}
.capacity-card__progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.capacity-card__progress-track {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  height: 0.5rem;
}
.capacity-card__progress-fill {
  background: #ffffff;
  height: 100%;
  border-radius: 9999px;
}
.capacity-card__note {
  font-size: 0.625rem;
  margin-top: 16px;
  opacity: 0.7;
}

.holidays-card {
  background: #f2f3fb;
  border-radius: 0.75rem;
  padding: 32px;
}
@media (min-width: 768px) {
  .holidays-card {
    grid-column: span 7;
  }
}
.holidays-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.holidays-card__title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.25rem;
  font-weight: 700;
}
.holidays-card__action-btn {
  background: none;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00478d;
  cursor: pointer;
}
.holidays-card__action-btn:hover {
  text-decoration: underline;
}
.holidays-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.holiday-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #ffffff;
  border-radius: 0.75rem;
}
.holiday-item__person {
  display: flex;
  align-items: center;
  gap: 16px;
}
.holiday-item__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}
.holiday-item__name {
  font-weight: 700;
  font-size: 0.875rem;
  color: #191c21;
}
.holiday-item__role {
  font-size: 0.75rem;
  color: #424752;
  margin-top: 2px;
}
.holiday-item__dates {
  text-align: right;
}
.holiday-item__date-range {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: #191c21;
}

.dash-right-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .dash-right-col {
    grid-column: span 5;
  }
}

.alert-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 24px;
  border-left: 4px solid #005148;
}
.alert-card__body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.alert-card__icon-wrap {
  flex-shrink: 0;
  padding: 12px;
  background: #8df5e4;
  border-radius: 0.75rem;
  color: #005148;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert-card__title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
  margin-bottom: 4px;
}
.alert-card__desc {
  font-size: 0.75rem;
  color: #424752;
  line-height: 1.6;
}
.alert-card__resolve-btn {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background: #191c21;
  border: none;
  padding: 8px 16px;
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.alert-card__resolve-btn:hover {
  opacity: 0.85;
}

.activity-card {
  background: rgba(225, 226, 234, 0.3);
  border-radius: 0.75rem;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.activity-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.activity-card__title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
}
.activity-card__icon {
  color: #424752;
}
.activity-card__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
}
.activity-item__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.activity-item__dot--primary {
  background: #00478d;
}
.activity-item__dot--tertiary {
  background: #005148;
}
.activity-item__text {
  color: #424752;
}
.activity-item__time {
  margin-left: auto;
  color: #727783;
  font-size: 0.625rem;
  white-space: nowrap;
}

.badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.125rem 8px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge--approved {
  background: #8df5e4;
  color: #005048;
}
.badge--pending {
  background: #cfe6f2;
  color: #354a53;
}
.badge--conflict {
  background: #ffdad6;
  color: #93000a;
}

.no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.dir-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .dir-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.dir-header__text {
  flex: 1;
}
.dir-header__title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 2rem;
  font-weight: 900;
  color: #191c21;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.dir-header__subtitle {
  font-size: 0.875rem;
  color: #424752;
  font-weight: 500;
}
.dir-header__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.dir-header__search {
  position: relative;
  display: flex;
  align-items: center;
}
.dir-header__search .material-symbols-outlined {
  position: absolute;
  left: 12px;
  color: #727783;
  pointer-events: none;
  font-size: 1.25rem;
}
.dir-header__search input {
  background: #f2f3fb;
  border: none;
  border-radius: 9999px;
  padding: 8px 16px 8px 2.5rem;
  width: 16rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.75rem;
  color: #191c21;
  outline: none;
  transition: box-shadow 0.2s;
}
.dir-header__search input:focus {
  box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.12);
}
.dir-header__search input::placeholder {
  color: #727783;
}

.dir-table-head {
  display: grid;
  grid-template-columns: 5fr 3fr 2fr 2fr;
  gap: 8px;
  margin-bottom: 24px;
  background: #f2f3fb;
  border-radius: 0.75rem;
  padding: 8px 12px;
}
.dir-table-head__col {
  padding: 8px 16px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #727783;
}
.dir-table-head__col--center {
  text-align: center;
}
.dir-table-head__col--right {
  text-align: right;
}

.dir-row {
  display: grid;
  grid-template-columns: 5fr 3fr 2fr 2fr;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 9999px;
  padding: 16px 24px;
  transition: background 0.3s;
}
.dir-row:hover {
  background: #d6e3ff;
}
.dir-row:hover .dir-row__actions {
  opacity: 1;
}
.dir-row__person {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dir-row__avatar-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e7e8f0;
}
.dir-row__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dir-row__name {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
  font-size: 0.875rem;
  color: #191c21;
}
.dir-row__role {
  font-size: 0.75rem;
  color: #424752;
  margin-top: 2px;
}
.dir-row__hours-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.dir-row__hours-value {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 900;
  font-size: 0.875rem;
  color: #00478d;
}
.dir-row__hours-value--overtime {
  color: #ba1a1a;
}
.dir-row__hours-track {
  width: 8rem;
  height: 3px;
  background: #e7e8f0;
  border-radius: 9999px;
  overflow: hidden;
}
.dir-row__hours-fill {
  height: 100%;
  border-radius: 9999px;
  background: #00478d;
  transition: width 0.4s ease;
}
.dir-row__hours-fill--overtime {
  background: #ba1a1a;
}
.dir-row__status-col {
  display: flex;
  justify-content: center;
}
.dir-row__actions {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s;
}
.dir-row__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: #727783;
  transition: background 0.2s;
}
.dir-row__action-btn:hover {
  background: #f2f3fb;
}
.dir-row__action-btn--danger {
  color: #ba1a1a;
}
.dir-row__action-btn--danger:hover {
  background: #ffdad6;
}

.dir-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dir-load-more {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
.dir-load-more button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
  font-size: 0.875rem;
  color: #00478d;
  cursor: pointer;
}
.dir-load-more button:hover {
  text-decoration: underline;
}

.dashboard-soon {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 71, 141, 0.12);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 48px);
  background: radial-gradient(circle at top left, rgba(0, 94, 184, 0.16), transparent 36%), radial-gradient(circle at bottom right, rgba(107, 179, 255, 0.18), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 24px 60px rgba(14, 30, 62, 0.08);
}

.dashboard-soon__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.dashboard-soon__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 71, 141, 0.08);
  color: #00478d;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-soon__title {
  margin: 20px 0 12px;
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #10213f;
}

.dashboard-soon__text {
  max-width: 58ch;
  margin: 0;
  color: #44516a;
  font-size: 1rem;
  line-height: 1.7;
}

.dashboard-soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dashboard-soon__aside {
  display: grid;
  gap: 14px;
}

.dashboard-soon__card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 33, 63, 0.08);
  backdrop-filter: blur(8px);
}

.dashboard-soon__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-soon__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 94, 184, 0.1);
  color: #005eb8;
}

.dashboard-soon__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #10213f;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-soon__card h3,
.dashboard-soon__rail h2 {
  margin: 0;
  color: #10213f;
}

.dashboard-soon__card p,
.dashboard-soon__rail p {
  margin: 0;
  color: #51607c;
  line-height: 1.55;
}

.dashboard-soon__rail {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-soon__rail-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(16, 33, 63, 0.04);
  border: 1px solid rgba(16, 33, 63, 0.06);
}

.dashboard-soon__rail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #00478d;
  font-weight: 700;
  text-decoration: none;
}

.dashboard-soon__rail-link:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .dashboard-soon__shell,
  .dashboard-soon__rail {
    grid-template-columns: 1fr;
  }
  .dashboard-soon__title {
    max-width: none;
  }
}
.employee-page {
  max-width: 56rem;
  margin-inline: auto;
  padding: 32px 24px;
}

.employee-card {
  padding: 32px;
}
.employee-card:hover {
  background: #ffffff;
}

.employee-card-header {
  margin-bottom: 32px;
}

.employee-form-title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.5rem;
  font-weight: 800;
  color: #191c21;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.employee-form-subtitle {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  color: #424752;
}

.employee-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) {
  .employee-form-grid {
    grid-template-columns: 1fr;
  }
}

.employee-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.employee-form-label {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.75rem;
  font-weight: 600;
  color: #424752;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.employee-form-input {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  color: #191c21;
  background: #f2f3fb;
  border: none;
  border-radius: 0.5rem;
  padding: 12px 16px;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.employee-form-input::placeholder {
  color: #424752;
  opacity: 0.55;
}
.employee-form-input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #a9c7ff;
}
.employee-form-input.is-error {
  background: #ffdad6;
  color: #ba1a1a;
  box-shadow: none;
}

.employee-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}

.employee-form-group--checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.employee-form-group--checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 0.125rem;
  background: #f2f3fb;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}
.employee-form-group--checkbox input[type=checkbox]:checked {
  background: #00478d;
}
.employee-form-group--checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/0.65rem no-repeat;
}
.employee-form-group--checkbox input[type=checkbox]:focus {
  box-shadow: 0 0 0 2px #a9c7ff;
}
.employee-form-group--checkbox .employee-form-label {
  text-transform: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: #191c21;
  letter-spacing: 0;
}

.btn-ghost {
  background: none;
  border: none;
  color: #00478d;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 0.75rem;
  transition: background 0.15s;
}
.btn-ghost:hover {
  background: rgba(214, 227, 255, 0.4);
}

.employee-form-alert {
  padding: 12px 16px;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.employee-form-alert--error {
  background: #ffdad6;
  color: #93000a;
}
.employee-form-alert--success {
  background: #8df5e4;
  color: #00201c;
}

.ep-page {
  padding: 32px 24px;
  max-width: 90rem;
  margin-inline: auto;
}

.ep-header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .ep-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.ep-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.ep-header__breadcrumb span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #424752;
}
.ep-header__breadcrumb .material-symbols-outlined {
  font-size: 1rem;
  color: #424752;
}
.ep-header__breadcrumb .ep-header__breadcrumb-active {
  color: #00478d;
}

.ep-header__title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #00478d;
  line-height: 1.05;
}

.ep-header__subtitle {
  font-size: 1rem;
  color: #424752;
  font-weight: 500;
  margin-top: 8px;
}

.ep-header__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.ep-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .ep-grid {
    grid-template-columns: 38.5% 61.5%;
  }
}

.ep-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ep-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ep-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 32px;
}

.ep-avatar-wrap {
  position: relative;
  width: 8rem;
  height: 8rem;
  margin-inline: auto;
  margin-bottom: 24px;
}

.ep-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  outline: 4px solid #d6e3ff;
}

.ep-avatar-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #00478d;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(25, 28, 33, 0.06);
}
.ep-avatar-btn .material-symbols-outlined {
  font-size: 1rem;
}

.ep-field-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ep-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ep-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #424752;
  margin-bottom: 2px;
}

.ep-input {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  color: #191c21;
  background: #f2f3fb;
  border: none;
  border-radius: 0.5rem;
  padding: 12px 16px;
  outline: none;
  width: 100%;
  transition: background 0.2s, box-shadow 0.2s;
}
.ep-input::placeholder {
  color: #424752;
  opacity: 0.55;
}
.ep-input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #a9c7ff;
}

.ep-workload-card {
  background: rgba(214, 227, 255, 0.3);
  border-radius: 0.75rem;
  padding: 32px;
}

.ep-workload-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.ep-workload-head h3 {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.5rem;
  font-weight: 800;
  color: #00478d;
}
.ep-workload-head .material-symbols-outlined {
  color: #00478d;
}

.ep-workload-metric {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ep-workload-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.ep-workload-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #424752;
}

.ep-workload-value {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 2rem;
  font-weight: 900;
  color: #00478d;
  line-height: 1;
}

.ep-workload-track {
  width: 100%;
  height: 0.5rem;
  background: #e7e8f0;
  border-radius: 9999px;
  overflow: hidden;
}

.ep-workload-fill {
  height: 100%;
  background: #00478d;
  border-radius: 9999px;
  transition: width 0.4s ease;
}

.ep-workload-meta {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #424752;
  margin-top: 12px;
}

.ep-stat-row {
  display: flex;
  gap: 16px;
}

.ep-stat-box {
  flex: 1;
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(25, 28, 33, 0.06);
}
.ep-stat-box p:first-child {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #424752;
  margin-bottom: 4px;
}
.ep-stat-box p:last-child {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.5rem;
  font-weight: 900;
  color: #191c21;
}

.ep-avail-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 32px;
}

.ep-avail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.ep-avail-title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.75rem;
  font-weight: 900;
  color: #191c21;
  letter-spacing: -0.02em;
}

.ep-tab-switch {
  display: flex;
  background: #f2f3fb;
  border-radius: 9999px;
  padding: 4px;
  gap: 2px;
}
.ep-tab-switch button {
  padding: 4px 16px;
  border-radius: 9999px;
  border: none;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  color: #424752;
  background: transparent;
}
.ep-tab-switch button.is-active {
  background: #ffffff;
  color: #00478d;
  box-shadow: 0 12px 40px rgba(25, 28, 33, 0.06);
}

.ep-cal {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 32px;
}

.ep-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(194, 198, 212, 0.2);
}

.ep-cal-head-cell {
  background: #f2f3fb;
  padding: 12px 0;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #424752;
}

.ep-cal-cell {
  background: #ffffff;
  aspect-ratio: 1;
  padding: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #191c21;
  position: relative;
}
.ep-cal-cell--dim {
  background: #f9f9ff;
  color: #c2c6d4;
  font-weight: 500;
}
.ep-cal-cell--weekend {
  background: #f2f3fb;
}
.ep-cal-cell--holiday {
  background: rgba(141, 245, 228, 0.3);
  color: #005048;
}
.ep-cal-cell--vacation {
  background: rgba(214, 227, 255, 0.4);
  color: #00468c;
}
.ep-cal-cell--sick {
  background: rgba(253, 230, 138, 0.45);
  color: #92400e;
}
.ep-cal-cell--unpaid {
  background: rgba(221, 214, 254, 0.45);
  color: #5b21b6;
}
.ep-cal-cell--other {
  background: rgba(194, 198, 212, 0.4);
  color: #424752;
}
.ep-cal-cell--pending {
  background: rgba(207, 230, 242, 0.35);
  color: #424752;
}

.ep-cal-dot {
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  height: 4px;
  border-radius: 9999px;
}
.ep-cal-dot--holiday {
  background: #005148;
}
.ep-cal-dot--vacation {
  background: #00478d;
}
.ep-cal-dot--sick {
  background: #d97706;
}
.ep-cal-dot--unpaid {
  background: #7c3aed;
}
.ep-cal-dot--other {
  background: #727783;
}
.ep-cal-dot--pending {
  background: #4c616c;
}

/* calendar note shown on start date */
.ep-cal-note {
  font-size: 0.6875rem;
  color: #424752;
  margin-top: 4px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ep-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ep-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #424752;
}

.ep-legend__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
.ep-legend__dot--holiday {
  background: #005148;
}
.ep-legend__dot--pending {
  background: #b4cad6;
}
.ep-legend__dot--sick {
  background: #ffdad6;
}

.ep-legend__action {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 800;
  font-size: 0.875rem;
  color: #00478d;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.ep-legend__action:hover {
  text-decoration: underline;
}
.ep-legend__action .material-symbols-outlined {
  font-size: 1.1rem;
}

.ep-leave-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .ep-leave-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ep-leave-panel {
  border-radius: 0.75rem;
  padding: 24px;
}
.ep-leave-panel--confirmed {
  background: #ecedf6;
}
.ep-leave-panel--pending {
  background: #e7e8f0;
}

.ep-leave-panel-title {
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #424752;
  margin-bottom: 16px;
}

.ep-leave-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ep-leave-item {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ep-leave-item--confirmed {
  border-left: 4px solid #005148;
}
.ep-leave-item--pending {
  border-left: 4px solid #4c616c;
  background: rgba(255, 255, 255, 0.5);
}

.ep-leave-item-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #191c21;
}

.ep-leave-item-date {
  font-size: 0.875rem;
  color: #424752;
  margin-top: 2px;
}

.ep-leave-badge {
  font-size: 0.6875rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 0.25rem;
  white-space: nowrap;
}
.ep-leave-badge--confirmed {
  background: #8df5e4;
  color: #005048;
}
.ep-leave-badge--pending {
  background: #cfe6f2;
  color: #354a53;
}

.ep-leave-empty {
  height: 4.75rem;
  border: 2px dashed rgba(194, 198, 212, 0.3);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ep-leave-empty span {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(66, 71, 82, 0.5);
}

/* Modal styles for template editor and confirmations */
.ep-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.ep-modal {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 24px;
  width: min(720px, 100% - 48px);
  box-shadow: 0 20px 60px rgba(25, 28, 33, 0.12);
}

.ep-modal__title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.ep-modal__grid {
  display: grid;
  gap: 16px;
}

.ep-modal__row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ep-modal__label {
  width: 6.5rem;
  font-size: 0.875rem;
  color: #424752;
}

.ep-modal__time {
  width: 100%;
}

.ep-modal .btn-primary {
  padding: 8px 16px;
}

.ep-modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #424752;
}

.ep-template-entry-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow: auto;
  padding-right: 4px;
}

.ep-small {
  font-size: 0.9rem;
  color: #424752;
}

/* Inline error shown inside modals */
.ep-modal__error {
  background: #ffdad6;
  color: #93000a;
  padding: 8px 16px;
  border-radius: 0.25rem;
  margin-top: 12px;
  display: none;
}

.ep-week-template-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.ep-week-template-title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.5rem;
  font-weight: 800;
  color: #191c21;
  letter-spacing: -0.02em;
}

.ep-day-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.ep-day-card {
  background: #f2f3fb;
  border-radius: 0.5rem;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 5rem;
}
.ep-day-card--empty {
  background: #f9f9ff;
  border: 2px dashed rgba(194, 198, 212, 0.25);
  justify-content: space-between;
}

.ep-day-card__name {
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #424752;
  margin-bottom: 4px;
}

.ep-day-card__time {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1rem;
  font-weight: 700;
  color: #191c21;
}

.ep-day-card__break {
  font-size: 0.6875rem;
  color: #424752;
  margin-top: 2px;
}

.ep-day-card__empty-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(66, 71, 82, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #00478d;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 0.5rem;
  transition: background 0.15s;
}
.btn-ghost:hover {
  background: rgba(214, 227, 255, 0.45);
}
.btn-ghost .material-symbols-outlined {
  font-size: 1.1rem;
}

.ep-modal-stats {
  display: flex;
  gap: 24px;
  background: rgba(214, 227, 255, 0.28);
  border-radius: 0.5rem;
  padding: 16px 24px;
}

.ep-modal-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ep-modal-stat__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #424752;
}
.ep-modal-stat__value {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.5rem;
  font-weight: 800;
  color: #00478d;
  line-height: 1.1;
}
.ep-modal-stat--warn .ep-modal-stat__value {
  color: #ba1a1a;
}

.ep-modal-entry-grid {
  display: grid;
  grid-template-columns: 5.5rem 1fr 1fr 5rem;
  gap: 12px;
  align-items: center;
}

.ep-modal-entry-head {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #424752;
  padding: 0 8px;
}

.ep-modal-entry-row {
  display: contents;
}

.ep-modal-day-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #191c21;
  padding: 8px 0;
}

.shift-list-page-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .shift-list-page-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.shift-list-page-title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 2rem;
  font-weight: 900;
  color: #191c21;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}

.shift-list-page-subtitle {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  color: #424752;
  font-weight: 500;
}

.shift-list-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.shift-list-cols {
  display: grid;
  grid-template-columns: 3fr 5fr 4fr;
  gap: 4px;
  background: #f2f3fb;
  border-radius: 0.75rem;
  padding: 4px 8px;
  margin-bottom: 24px;
}

.shift-list-col-label {
  padding: 4px 16px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #727783;
}
.shift-list-col-label--right {
  text-align: right;
}
.shift-list-col-label--center {
  text-align: center;
}

.shift-list-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shift-row {
  display: grid;
  grid-template-columns: 3fr 5fr 4fr;
  align-items: center;
  background: #ffffff;
  border-radius: 9999px;
  padding: 16px 8px;
  transition: background 0.3s;
}
.shift-row:hover {
  background: #d6e3ff;
}
.shift-row:hover .shift-row__actions {
  opacity: 1;
}

.shift-row__period {
  padding-inline: 16px;
}

.shift-row__week {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 900;
  font-size: 0.875rem;
  color: #00478d;
  letter-spacing: -0.01em;
}

.shift-row__dates {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.75rem;
  color: #424752;
  font-weight: 500;
  margin-top: 2px;
}

.shift-row__employees {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 16px;
}

.shift-row__emp-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #e7e8f0;
  flex-shrink: 0;
  color: #424752;
}

.shift-row__emp-count {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 900;
  font-size: 1.5rem;
  color: #191c21;
  line-height: 1;
}

.shift-row__emp-label {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.75rem;
  color: #424752;
  font-weight: 500;
  margin-top: 2px;
}

.shift-row__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  padding-inline: 16px;
  opacity: 0;
  transition: opacity 0.2s;
}

.shift-row__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s;
  color: #727783;
  text-decoration: none;
}
.shift-row__action-btn:hover {
  background: #ffffff;
}
.shift-row__action-btn--danger {
  color: #ba1a1a;
}
.shift-row__action-btn--danger:hover {
  background: #ffdad6;
}

.shift-list-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 64px 32px;
  background: #e7e8f0;
  border-radius: 0.75rem;
  color: #424752;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  outline: 1px dashed rgba(194, 198, 212, 0.2);
  text-align: center;
}
.shift-list-empty .material-symbols-outlined {
  font-size: 3rem;
  opacity: 0.4;
}

.shift-list-load-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.shift-list-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #00478d;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 0.75rem;
  transition: background 0.15s;
}
.shift-list-load-more-btn:hover {
  background: rgba(214, 227, 255, 0.4);
}

.planner-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .planner-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.planner-title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 2rem;
  font-weight: 900;
  color: #191c21;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}

.planner-week-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.planner-week-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: #cfe6f2;
  color: #354a53;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.planner-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: #191c21;
  transition: background 0.15s;
}
.planner-nav-btn:hover {
  background: #e7e8f0;
}
.planner-nav-btn .material-symbols-outlined {
  font-size: 1.125rem;
}

.week-selector {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f2f3fb;
  border-radius: 0.75rem;
  padding: 0.3125rem 12px;
}

.week-selector__label {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #424752;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.week-selector__input {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  color: #191c21;
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  min-width: 0;
}
.week-selector__input[name=wk-week] {
  width: 3ch;
}
.week-selector__input[name=wk-year] {
  width: 5ch;
}
.week-selector__input:focus {
  color: #00478d;
}
.week-selector__input {
  -moz-appearance: textfield;
}
.week-selector__input::-webkit-outer-spin-button, .week-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.week-selector__divider {
  width: 1px;
  height: 1rem;
  background: #c2c6d4;
  opacity: 0.35;
  flex-shrink: 0;
}

.week-selector__go-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: #00478d;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.week-selector__go-btn:hover {
  opacity: 0.88;
}
.week-selector__go-btn .material-symbols-outlined {
  font-size: 0.875rem;
}

.planner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.planner-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .planner-stats {
    grid-template-columns: 1fr 1fr 2fr;
  }
}

.planner-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 9999px;
  padding: 16px 24px;
  outline: 1px solid rgba(194, 198, 212, 0.1);
}

.planner-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.planner-stat-icon--staff {
  background: #d6e3ff;
  color: #00478d;
}
.planner-stat-icon--coverage {
  background: #8df5e4;
  color: #005148;
}

.planner-stat-label {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.6875rem;
  color: #424752;
  font-weight: 500;
}

.planner-stat-value {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.5rem;
  font-weight: 900;
  color: #191c21;
  line-height: 1.1;
}

.planner-conflict-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #ffdad6;
  border-radius: 9999px;
  padding: 16px 32px;
}

/* Legend (moved from template inline styles) */
.planner-legend {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.planner-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.planner-legend__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.planner-legend__dot--mid {
  background: #e0a800;
}

.planner-legend__dot--confirmed {
  background: var(--tertiary-fixed);
}

.planner-legend__dot--opening {
  background: rgba(141, 245, 228, 0.4);
}

.planner-legend__dot--template {
  background: rgba(207, 230, 242, 0.45);
}

.planner-legend__dot--holiday {
  background: rgba(207, 230, 242, 0.5);
}

/* Public holiday cell styling (moved from template) */
.chronos__cell--public-holiday {
  background: #db7923;
  color: #fff;
  border: 1px solid #db7923;
}

.chronos__cell--public-holiday .material-symbols-outlined {
  color: #fff;
}

.chronos__cell--public-holiday .chronos__cell-time,
.chronos__cell--public-holiday .chronos__cell-label {
  color: #fff;
}

.planner-conflict-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #93000a;
}

.planner-conflict-btn {
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #93000a;
  background: none;
  border: none;
  border-bottom: 2px solid rgba(147, 0, 10, 0.3);
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}

.chronos {
  background: #ffffff;
  border-radius: 0.75rem;
  outline: 1px solid rgba(194, 198, 212, 0.05);
  overflow-x: auto;
  margin-bottom: 16px;
}

.chronos__inner {
  min-width: 56rem;
}

.chronos__col-header {
  display: grid;
  grid-template-columns: 13rem repeat(7, 1fr);
  gap: 0.25rem;
  padding: 0.25rem 0.25rem 0;
}

.chronos__col-emp-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #727783;
}

.chronos__col-day {
  padding: 16px 8px;
  text-align: center;
}

.chronos__col-day-name {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #727783;
}

.chronos__col-day-num {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.125rem;
  font-weight: 900;
  color: #191c21;
  line-height: 1.3;
}
.chronos__col-day-num--today {
  color: #00478d;
}
.chronos__col-day-num--weekend {
  color: #424752;
  opacity: 0.5;
}

.chronos__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}

.chronos__row {
  display: grid;
  grid-template-columns: 13rem repeat(7, 1fr);
  gap: 8px;
  align-items: center;
}

.chronos__row-emp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
}

.chronos__row-emp-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.2s;
  flex-shrink: 0;
}
.chronos__row-emp-avatar:hover {
  filter: grayscale(0);
}

.chronos__row-emp-initials {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #d6e3ff;
  color: #00478d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.6875rem;
  font-weight: 800;
  flex-shrink: 0;
}

.chronos__row-emp-name {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  font-weight: 700;
  color: #191c21;
  line-height: 1.2;
}

.chronos__row-emp-hours {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #424752;
}
.chronos__row-emp-hours--conflict {
  color: #ba1a1a;
}
.chronos__row-emp-hours--low {
  color: #ffb74d;
}

.chronos__cell {
  height: 5rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  cursor: pointer;
  transition: transform 0.15s;
}
.chronos__cell:hover {
  transform: scale(1.02);
}
.chronos__cell--opening {
  background: rgba(141, 245, 228, 0.4);
  border-left: 4px solid #005148;
}
.chronos__cell--mid {
  background: rgba(255, 152, 0, 0.15);
  border-left: 4px solid #e65100;
}
.chronos__cell--closing {
  background: #005eb8;
  border-left: 4px solid #00478d;
}
.chronos__cell--overtime {
  background: #ffdad6;
  border-left: 4px solid #ba1a1a;
}
.chronos__cell--template {
  background: rgba(207, 230, 242, 0.45);
  border-left: 4px dashed #4c616c;
  color: #424752;
}
.chronos__cell--confirmed {
  background: rgba(141, 245, 228, 0.4);
  border-left: 4px solid #005148;
}
.chronos__cell--holiday {
  background: rgba(207, 230, 242, 0.5);
  border: 2px dashed #cfe6f2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.chronos__cell--holiday:hover {
  transform: none;
}
.chronos__cell--empty {
  background: #e7e8f0;
  border: 2px dashed rgba(194, 198, 212, 0.3);
  align-items: center;
  justify-content: center;
  color: #727783;
}
.chronos__cell--empty:hover {
  background: #d6e3ff;
  color: #00478d;
  transform: none;
}
.chronos__cell--blocked {
  background: #f2f3fb;
  opacity: 0.4;
  cursor: default;
  align-items: center;
  justify-content: center;
  color: #727783;
}
.chronos__cell--blocked:hover {
  transform: none;
}
.chronos__cell--holiday-span {
  grid-column: span 2;
}

.chronos__cell-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chronos__cell--opening .chronos__cell-label {
  color: #005048;
}

.chronos__cell--mid .chronos__cell-label {
  color: #bf360c;
}

.chronos__cell--closing .chronos__cell-label {
  color: #c8daff;
}

.chronos__cell--confirmed .chronos__cell-label {
  color: #005048;
}

.chronos__cell--template .chronos__cell-label {
  color: #354a53;
}

.chronos__cell--overtime .chronos__cell-label {
  color: #93000a;
}

.chronos__cell--holiday .chronos__cell-label {
  color: #526772;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.6875rem;
}

.chronos__cell-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: #191c21;
}

.chronos__cell-overtime-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.chronos__cell-foot {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chronos__cell-break {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #424752;
}
.chronos__cell-break .material-symbols-outlined {
  font-size: 0.75rem;
}

.chronos__cell--closing .chronos__cell-break {
  color: #a9c7ff;
  opacity: 0.8;
}

.chronos__cell-total {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: rgba(25, 28, 33, 0.12);
  color: #191c21;
  margin-left: auto;
}

.chronos__cell--mid .chronos__cell-total {
  background: rgba(230, 81, 0, 0.15);
  color: #bf360c;
}

.chronos__cell--opening .chronos__cell-total,
.chronos__cell--confirmed .chronos__cell-total {
  background: rgba(0, 81, 72, 0.18);
  color: #005048;
}

.chronos__cell--closing .chronos__cell-total {
  background: rgba(169, 199, 255, 0.2);
  color: #c8daff;
}

.chronos__cell--template .chronos__cell-total {
  background: rgba(76, 97, 108, 0.15);
  color: #354a53;
}

.quick-assign {
  display: none;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  display: none;
  align-items: center;
  gap: 24px;
  background: rgba(249, 249, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(194, 198, 212, 0.2);
  border-radius: 9999px;
  padding: 16px 24px;
  box-shadow: 0 12px 48px rgba(25, 28, 33, 0.08);
  max-width: 30rem;
  z-index: 40;
}
@media (min-width: 768px) {
  .quick-assign {
    display: flex;
  }
}

.quick-assign__avatars {
  display: flex;
  align-items: center;
}
.quick-assign__avatars img,
.quick-assign__avatars .quick-assign__count {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid rgba(249, 249, 255, 0.85);
  margin-right: -0.75rem;
}

.quick-assign__count {
  background: #00478d;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-assign__text {
  padding-left: 24px;
}
.quick-assign__text p:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: #191c21;
}
.quick-assign__text p:last-child {
  font-size: 0.6875rem;
  color: #727783;
}

.quick-assign__btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #e1e2ea;
  color: #191c21;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.quick-assign__btn:hover {
  background: #d6e3ff;
}

.shift-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  pointer-events: none;
  visibility: hidden;
}
.shift-drawer[aria-hidden=false] {
  pointer-events: auto;
  visibility: visible;
}
.shift-drawer[aria-hidden=false] .shift-drawer__backdrop {
  opacity: 1;
}
.shift-drawer[aria-hidden=false] .shift-drawer__panel {
  transform: translateX(0);
}

.shift-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(46, 48, 55, 0.25);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

.shift-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(26rem, 100vw);
  background: rgba(249, 249, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(25, 28, 33, 0.06);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.shift-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(194, 198, 212, 0.12);
  flex-shrink: 0;
}

.shift-drawer__eyebrow {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #424752;
  margin-bottom: 4px;
}

.shift-drawer__title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.5rem;
  font-weight: 800;
  color: #191c21;
  letter-spacing: -0.015em;
}

.shift-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: #f2f3fb;
  border-radius: 50%;
  cursor: pointer;
  color: #424752;
  flex-shrink: 0;
  transition: background 0.15s;
}
.shift-drawer__close:hover {
  background: #e7e8f0;
}

.shift-drawer__holiday-banner {
  margin: 24px 32px 0;
  padding: 16px;
  background: #cfe6f2;
  border-radius: 0.75rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.75rem;
  color: #071e27;
  line-height: 1.5;
}
.shift-drawer__holiday-banner[hidden] {
  display: none;
}
.shift-drawer__holiday-banner .material-symbols-outlined {
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.shift-drawer__holiday-banner strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.75rem;
}

.shift-drawer__body {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}

.shift-drawer__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.shift-drawer__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shift-drawer__field--full {
  grid-column: 1/-1;
}

.shift-drawer__label {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #424752;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shift-drawer__input,
.shift-drawer__select,
.shift-drawer__textarea {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  color: #191c21;
  background: #f2f3fb;
  border: none;
  border-radius: 0.5rem;
  padding: 12px 16px;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.shift-drawer__input:focus,
.shift-drawer__select:focus,
.shift-drawer__textarea:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #a9c7ff;
}

.shift-drawer__textarea {
  min-height: 5rem;
  resize: vertical;
  line-height: 1.5;
}

.shift-drawer__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23727783' d='m7 10 5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.shift-drawer__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 32px;
  border-top: 1px solid rgba(194, 198, 212, 0.12);
  flex-shrink: 0;
  background: #ffffff;
}

.shift-drawer__delete-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #ba1a1a;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 0.75rem;
  transition: background 0.15s;
}
.shift-drawer__delete-btn:hover {
  background: #ffdad6;
}
.shift-drawer__delete-btn .material-symbols-outlined {
  font-size: 1rem;
}

.shift-drawer__footer-end {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.shift-drawer__tpl-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #00478d;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 0.75rem;
  transition: background 0.15s;
}
.shift-drawer__tpl-btn:hover {
  background: rgba(214, 227, 255, 0.4);
}
.shift-drawer__tpl-btn .material-symbols-outlined {
  font-size: 1rem;
}

.shift-drawer__status-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.shift-drawer__status-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s, background 0.15s;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
.shift-drawer__status-chip--planned {
  background: rgba(0, 94, 184, 0.3);
  color: #00478d;
}
.shift-drawer__status-chip--confirmed {
  background: rgba(141, 245, 228, 0.4);
  color: #005148;
}
.shift-drawer__status-chip--completed {
  background: rgba(141, 245, 228, 0.25);
  color: #005148;
}
.shift-drawer__status-chip--cancelled {
  background: #e7e8f0;
  color: #727783;
}
.shift-drawer__status-chip[data-selected=true] {
  border-color: currentColor;
}

.shift-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 32px));
  background: #2e3037;
  color: #eff0f8;
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  z-index: 300;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  pointer-events: none;
}
.shift-toast--show {
  transform: translateX(-50%) translateY(0);
}

.chronos__row-emp-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
}
.chronos__row-emp-avatar-wrap .chronos__row-emp-avatar {
  width: 100%;
  height: 100%;
}

.chronos__row-emp-badge {
  position: absolute;
  bottom: -0.25rem;
  right: -0.25rem;
  font-size: 0.875rem !important;
  line-height: 1;
  border-radius: 50%;
  background: #ffffff;
  padding: 1px;
}
.chronos__row-emp-badge--ok {
  color: #005148;
}
.chronos__row-emp-badge--warn {
  color: #ba1a1a;
}
.chronos__row-emp-badge--low {
  color: #ffb74d;
}

.chronos__row-emp-select-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  color: #00478d;
  flex-shrink: 0;
  transition: background 0.15s;
}
.chronos__row-emp-select-btn .material-symbols-outlined {
  font-size: 1.125rem;
}
.chronos__row-emp-select-btn:hover {
  background: #d6e3ff;
}

.batch-mode-active .batch-only {
  display: flex !important;
}
.batch-mode-active .chronos__cell[data-cell-type=shift] {
  outline: 2px solid transparent;
  transition: outline-color 0.15s, transform 0.15s;
}
.batch-mode-active .chronos__cell[data-cell-type=shift]:hover {
  outline-color: rgba(0, 71, 141, 0.4);
}
.batch-mode-active .chronos__cell--selected {
  outline: 2px solid #00478d !important;
  background: rgba(214, 227, 255, 0.7) !important;
}
.batch-mode-active .chronos__cell--selected .chronos__cell-label,
.batch-mode-active .chronos__cell--selected .chronos__cell-time,
.batch-mode-active .chronos__cell--selected .chronos__cell-break {
  color: #00478d;
}

.batch-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(110%);
  z-index: 250;
  display: flex;
  align-items: center;
  gap: 24px;
  background: #ffffff;
  border-radius: 0.75rem 0.75rem 0 0;
  padding: 16px 32px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  min-width: 32rem;
  max-width: 90vw;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.batch-bar[aria-hidden=false] {
  transform: translateX(-50%) translateY(0);
}

.batch-bar__info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
  font-size: 0.875rem;
  color: #191c21;
  white-space: nowrap;
}
.batch-bar__info .material-symbols-outlined {
  color: #00478d;
  font-size: 1.25rem;
}

.batch-bar__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-wrap: wrap;
}

.batch-bar__select {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  background: #e7e8f0;
  color: #191c21;
  border: none;
  border-radius: 0.75rem;
  padding: 8px 16px;
  cursor: pointer;
  outline: none;
  height: 2.5rem;
}
.batch-bar__select:focus {
  box-shadow: 0 0 0 2px #00478d;
}

.batch-bar__apply:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.batch-bar__clear {
  white-space: nowrap;
}

/* Landing page styles moved from templates/main/index.html.twig */
.landing-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.landing-container {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 500px;
}

.landing-container h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

.landing-container p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 30px;
}

#countdown {
  font-weight: bold;
  color: #667eea;
  font-size: 1.3em;
}

.actions {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1em;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #667eea;
  color: white;
}

.btn-primary:hover {
  background-color: #764ba2;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Settings page specific component styles (matches design tokens) */
.settings-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 16px;
  border: 1px solid rgba(194, 198, 212, 0.1);
  box-shadow: 0 6px 18px rgba(25, 28, 33, 0.04);
}

.settings-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.settings-title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 800;
  font-size: 1.5rem;
  color: #191c21;
}

.rounded-full-xl {
  border-radius: 0.75rem !important;
}

/* Job title list items */
.job-title-item {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(114, 119, 131, 0.06);
  transition: border-color 0.15s ease, transform 0.12s ease;
}

.job-title-item:hover {
  border-color: #a9c7ff;
}

.job-title-item .job-title-edit,
.job-title-item .job-title-delete {
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #4c616c;
}

.job-title-item .job-title-delete {
  color: #ba1a1a;
}

/* Small utility tweaks for the settings page */
.location-visual {
  border-radius: 0.75rem;
  overflow: hidden;
}

.advanced-settings {
  background: rgba(186, 26, 26, 0.08);
  border-radius: 0.75rem;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  user-select: none;
}

/* Utility helpers moved here to replace small inline styles in templates */
.ms-fill-1 {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.icon-xs {
  font-size: 0.875rem;
}

.icon-md {
  font-size: 18px;
}

.icon-lg {
  font-size: 48px;
}

.icon-error {
  color: var(--error);
}

.flex-1-min0 {
  flex: 1;
  min-width: 0;
}

/* Lightweight marketing helpers (extracted from static templates) */
.glass-header {
  backdrop-filter: blur(20px);
}

.glass-nav {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-gradient {
  background: linear-gradient(135deg, #00478d 0%, #005eb8 100%);
}

.text-shadow-subtle {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Root CSS custom properties mapping from SCSS variables */
:root {
  --surface: #f9f9ff;
  --surface-dim: #d8dae2;
  --surface-bright: rgba(249, 249, 255, 0.8);
  --surface-variant: #e1e2ea;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f2f3fb;
  --surface-container: #ecedf6;
  --surface-container-high: #e7e8f0;
  --surface-container-highest: #e1e2ea;
  --surface-tint: #005db6;
  --primary: #00478d;
  --primary-container: #005eb8;
  --primary-fixed: #d6e3ff;
  --primary-fixed-dim: #a9c7ff;
  --on-primary: #ffffff;
  --secondary: #4c616c;
  --secondary-container: #cfe6f2;
  --secondary-fixed: #cfe6f2;
  --tertiary: #005148;
  --tertiary-fixed: #8df5e4;
  --error: #ba1a1a;
  --error-container: #ffdad6;
  --on-error-container: #93000a;
  --warning: #ffb74d;
  --on-surface: #191c21;
  --on-surface-variant: #424752;
  --outline: #727783;
  --outline-variant: #c2c6d4;
  --radius-xl: 0.75rem;
  --ambient-shadow: 0 12px 40px rgba(25, 28, 33, 0.06);
}

/* ---- Global reset/base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #191c21;
  background: #f9f9ff;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.2;
}

a {
  color: inherit;
}

/* ---- Shared component tokens ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #00478d 0%, #005eb8 100%);
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 12px 24px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: scale(0.98);
}

.btn-secondary {
  background: #e1e2ea;
  color: #191c21;
  border: none;
  border-radius: 0.75rem;
  padding: 12px 16px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-secondary:hover {
  background: #e7e8f0;
}

.btn-success {
  align-items: center;
  gap: 8px;
  background: #8df5e4;
  color: #005048;
  border: none;
  border-radius: 0.75rem;
  padding: 12px 24px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-success:hover {
  opacity: 0.9;
  transform: scale(0.98);
}

.btn-danger {
  align-items: center;
  gap: 8px;
  background: #ba1a1a;
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 12px 24px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-danger:hover {
  opacity: 0.9;
  transform: scale(0.98);
}
.btn-danger:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 16px;
  transition: background 0.2s;
}
.card:hover {
  background: #d6e3ff;
}

.floating {
  box-shadow: 0 12px 40px rgba(25, 28, 33, 0.06);
  background: rgba(249, 249, 255, 0.8);
  border-radius: 0.75rem;
  backdrop-filter: blur(12px);
}

.ghost-border {
  outline: 1px solid rgba(194, 198, 212, 0.15);
}

.chip--confirmed {
  background: #8df5e4;
  color: #005048;
  border-radius: 0.75rem;
  padding: 4px 12px;
  font-size: 0.75rem;
}

.chip--pending {
  background: #cfe6f2;
  color: #191c21;
  border-radius: 0.75rem;
  padding: 4px 12px;
  font-size: 0.75rem;
}

.chip--error {
  background: #ffdad6;
  color: #93000a;
  border-radius: 0.75rem;
  padding: 4px 12px;
  font-size: 0.75rem;
}

.surface-container-lowest {
  background: #ffffff;
}

.surface-container-low {
  background: #f2f3fb;
}

.surface-container {
  background: #ecedf6;
}

.surface-container-high {
  background: #e7e8f0;
}

.surface-container-highest {
  background: #e1e2ea;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 24px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -16px;
}

.col {
  flex: 1;
  padding: 0 16px;
}

.col-auto {
  flex: 0 0 auto;
  padding: 0 16px;
}

.px-sm {
  padding-left: 12px;
  padding-right: 12px;
}

.py-sm {
  padding-top: 12px;
  padding-bottom: 12px;
}

.px-md {
  padding-left: 16px;
  padding-right: 16px;
}

.py-md {
  padding-top: 16px;
  padding-bottom: 16px;
}

.px-lg {
  padding-left: 24px;
  padding-right: 24px;
}

.py-lg {
  padding-top: 24px;
  padding-bottom: 24px;
}

.mx-sm {
  margin-left: 12px;
  margin-right: 12px;
}

.my-sm {
  margin-top: 12px;
  margin-bottom: 12px;
}

.mx-md {
  margin-left: 16px;
  margin-right: 16px;
}

.my-md {
  margin-top: 16px;
  margin-bottom: 16px;
}

.mx-lg {
  margin-left: 24px;
  margin-right: 24px;
}

.my-lg {
  margin-top: 24px;
  margin-bottom: 24px;
}

.w-sm {
  width: 12px;
}

.h-sm {
  height: 12px;
}

.w-md {
  width: 16px;
}

.h-md {
  height: 16px;
}

.w-lg {
  width: 24px;
}

.h-lg {
  height: 24px;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*# sourceMappingURL=theme.css-oT9psLc.map */
