:root {
  --navy: #101a35;
  --ink: #14203a;
  --muted: #64728c;
  --line: #e3e8f1;
  --surface: #fff;
  --canvas: #f4f7fd;
  --blue: #2d63f5;
  --blue-soft: #edf3ff;
  --teal: #11bfa5;
  --teal-soft: #e9faf6;
  --green: #15996e;
  --green-soft: #e9f9f2;
  --amber: #bc7800;
  --amber-soft: #fff6df;
  --red: #c53c54;
  --red-soft: #fff0f2;
  --shadow: 0 18px 40px rgba(44, 66, 114, 0.09);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}
* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font:
    400 15px/1.5 "DM Sans",
    system-ui,
    sans-serif;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
.hidden {
  display: none !important;
}
.auth-page {
  position: fixed;
  z-index: 10;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 40px 18px;
  background:
    radial-gradient(
      circle at 78% 12%,
      rgba(16, 191, 165, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 14% 92%,
      rgba(51, 102, 255, 0.16),
      transparent 34%
    ),
    var(--navy);
}
.auth-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
}
.auth-orb--one {
  width: 310px;
  height: 310px;
  top: -100px;
  right: 10%;
  background: rgba(45, 99, 245, 0.23);
}
.auth-orb--two {
  width: 240px;
  height: 240px;
  bottom: -70px;
  left: 9%;
  background: rgba(18, 193, 165, 0.16);
}
.auth-card {
  position: relative;
  width: min(100%, 495px);
  overflow: hidden;
  padding: 52px 58px 44px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 84px rgba(3, 12, 38, 0.34);
}
.auth-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    #3f66f5,
    #22bbd8 43%,
    #37c89c 64%,
    #f2b012
  );
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand strong {
  display: block;
  font:
    800 17px/1.1 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: -0.45px;
}
.brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}
.brand-mark {
  display: grid;
  flex: none;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #4874fa, #18bea9);
  font:
    800 14px/1 "Plus Jakarta Sans",
    sans-serif;
  box-shadow: 0 10px 20px rgba(45, 99, 245, 0.23);
}
.brand--auth {
  margin-bottom: 44px;
}
.auth-card h1,
.page-intro h1 {
  margin: 5px 0 8px;
  font:
    800 clamp(28px, 3vw, 39px) / 1.1 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: -1.6px;
}
.eyebrow {
  margin: 0;
  color: var(--blue);
  font:
    800 10px/1.3 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: 1.15px;
  text-transform: uppercase;
}
.lede,
.muted {
  color: var(--muted);
}
.lede {
  margin: 0;
  font-size: 16px;
}
.auth-card .lede {
  margin-bottom: 28px;
}
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  color: #334058;
  font-size: 13px;
  font-weight: 700;
}
.field > span {
  display: flex;
  gap: 4px;
}
.field em {
  color: var(--muted);
  font-weight: 400;
  font-style: normal;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  outline: 0;
  border: 1px solid #dbe2ed;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.field textarea {
  min-height: 112px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(45, 99, 245, 0.12);
}
.password-input {
  position: relative;
}
.password-input input {
  padding-right: 48px;
}
.password-input .icon-button {
  position: absolute;
  right: 5px;
  top: 4px;
  color: var(--blue);
}
.form-message {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--red);
  font-size: 13px;
}
.form-message.success {
  color: var(--green);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  transition:
    transform 0.16s,
    box-shadow 0.16s,
    background 0.16s;
}
.button:hover {
  transform: translateY(-1px);
}
.button:focus-visible,
.icon-button:focus-visible,
.text-button:focus-visible,
.nav-list a:focus-visible {
  outline: 3px solid rgba(45, 99, 245, 0.45);
  outline-offset: 2px;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}
.button--primary {
  color: #fff;
  background: linear-gradient(105deg, #2d5cf0, #19a9e3);
  box-shadow: 0 10px 20px rgba(38, 94, 242, 0.22);
}
.button--secondary,
.button--quiet {
  color: var(--blue);
  border-color: #d8e4ff;
  background: #f5f8ff;
}
.button--danger {
  color: var(--red);
  border-color: #f2c9d0;
  background: #fff5f6;
}
.button--block {
  width: 100%;
}
.button--small {
  min-height: 37px;
  padding: 7px 12px;
  font-size: 13px;
}
.text-button {
  padding: 3px 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 700;
}
.text-button--center {
  display: block;
  width: 100%;
  margin-top: 17px;
  text-align: center;
}
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 11px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: none;
  font-weight: 700;
}
.back-button:hover {
  color: var(--blue);
}
.icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  font-size: 20px;
}
.icon-button:hover {
  background: #edf2fb;
}
/* shell */
.app-shell {
  min-height: 100vh;
}
.sidebar {
  position: fixed;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: 252px;
  flex-direction: column;
  padding: 25px 14px 17px;
  color: #f7f9ff;
  background: linear-gradient(180deg, #101a35, #111a30);
  box-shadow: 5px 0 22px rgba(18, 29, 58, 0.06);
}
.sidebar__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 0 9px;
}
.sidebar .brand strong {
  color: #fff;
}
.sidebar .brand span {
  color: #95a3c2;
}
.sidebar__close {
  display: none;
  color: #fff;
}
.nav-list {
  display: grid;
  gap: 4px;
  margin-top: 42px;
}
.nav-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 10px;
  color: #c5cee4;
  font-size: 14px;
  font-weight: 700;
}
.nav-list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
}
.nav-list a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.nav-list a.active:before {
  width: 6px;
  height: 6px;
  margin-right: -6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(17, 191, 165, 0.11);
  content: "";
}
.nav-icon {
  display: inline-grid;
  width: 17px;
  place-items: center;
  color: #aeb9d2;
  font-size: 16px;
}
.nav-list a.active .nav-icon {
  color: #fff;
}
.nav-badge {
  min-width: 19px;
  margin-left: auto;
  padding: 1px 5px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--teal);
  text-align: center;
  font-size: 10px;
}
.nav-group {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}
.nav-group > p {
  margin: 0 11px 6px;
  color: #7c8aa9;
  font:
    800 10px/1 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sidebar__footer {
  margin-top: auto;
  padding: 12px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.account-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border-radius: 10px;
  color: #fff;
}
.account-chip:hover {
  background: rgba(255, 255, 255, 0.08);
}
.account-chip > span:last-child {
  margin-left: auto;
  color: #a8b5d1;
  font-size: 20px;
}
.account-chip strong,
.account-chip small {
  display: block;
  max-width: 144px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-chip strong {
  font-size: 13px;
}
.account-chip small {
  color: #9daac6;
  font-size: 11px;
}
.avatar {
  display: inline-grid;
  width: 37px;
  height: 37px;
  flex: none;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #2453b9;
  background: #dceafd;
  font:
    800 12px/1 "Plus Jakarta Sans",
    sans-serif;
}
.avatar--small {
  width: 31px;
  height: 31px;
  color: #fff;
  background: linear-gradient(135deg, #3a72f8, #19baa7);
}
.main-content {
  min-height: 100vh;
  margin-left: 252px;
  padding: 0 34px 54px;
  background:
    radial-gradient(
      circle at 85% 6%,
      rgba(73, 221, 194, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at 11% 40%,
      rgba(68, 110, 255, 0.1),
      transparent 31%
    ),
    var(--canvas);
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 18px 0;
}
.breadcrumb {
  display: grid;
  gap: 1px;
}
.breadcrumb span {
  color: var(--muted);
  font-size: 12px;
}
.breadcrumb strong {
  font:
    700 16px/1.1 "Plus Jakarta Sans",
    sans-serif;
}
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-button {
  display: none;
}
.view {
  width: min(100%, 1420px);
  margin: 0 auto;
}
.page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 23px 0 28px;
}
.page-intro--compact {
  margin-bottom: 23px;
}
.page-intro--home {
  margin-top: 20px;
}
.page-intro .lede {
  max-width: 620px;
}
.surface {
  min-width: 0;
  padding: 25px;
  border: 1px solid rgba(216, 225, 239, 0.85);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}
.surface__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 19px;
}
.surface__heading h2 {
  margin: 3px 0 0;
  font:
    800 20px/1.2 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: -0.5px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 17px;
}
.metric-card {
  position: relative;
  overflow: hidden;
  min-height: 149px;
  padding: 21px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.metric-card:after {
  position: absolute;
  width: 100px;
  height: 100px;
  right: -35px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(61, 95, 255, 0.1);
  content: "";
}
.metric-card > span,
.metric-card strong,
.metric-card small {
  position: relative;
  z-index: 1;
}
.metric-card > span {
  color: var(--muted);
  font-weight: 700;
}
.metric-card strong {
  display: block;
  margin: 12px 0 3px;
  font:
    800 31px/1 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: -1.2px;
}
.metric-card small {
  color: var(--muted);
}
.metric-card--blue {
  color: #fff;
  background: linear-gradient(135deg, #3862e7, #1bafe2);
}
.metric-card--blue > span,
.metric-card--blue small {
  color: rgba(255, 255, 255, 0.79);
}
.metric-card--blue:after {
  background: rgba(255, 255, 255, 0.14);
}
.skeleton-card {
  background: linear-gradient(100deg, #eaf0fa 30%, #f8fbff 45%, #eaf0fa 60%);
  background-size: 250% 100%;
  animation: shimmer 1.4s infinite;
}
.home-grid,
.security-grid,
.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 17px;
  margin-bottom: 17px;
}
.home-grid .surface--wide {
  min-height: 234px;
}
.stack-list {
  display: grid;
  gap: 10px;
}
.request-summary-row,
.availability-row,
.passkey-row,
.department-row,
.holiday-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 53px;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f5;
}
.request-summary-row:last-child,
.availability-row:last-child,
.passkey-row:last-child,
.department-row:last-child,
.holiday-row:last-child {
  border-bottom: 0;
}
.request-summary-row__icon,
.availability-row__avatar {
  display: grid;
  width: 37px;
  height: 37px;
  flex: none;
  place-items: center;
  border-radius: 11px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 800;
}
.availability-row__avatar {
  border-radius: 50%;
  color: #127c71;
  background: var(--teal-soft);
  font-size: 12px;
}
.request-summary-row__copy,
.availability-row__copy {
  min-width: 0;
}
.request-summary-row__copy strong,
.availability-row__copy strong,
.passkey-row strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}
.request-summary-row__copy span,
.availability-row__copy span,
.passkey-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.request-summary-row .status-badge {
  margin-left: auto;
}
.availability-period {
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
  padding: 1px 5px;
  border-radius: 999px;
  color: #2451ba;
  background: #e9f0ff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}
.availability-period--am {
  color: #2451ba;
  background: #e9f0ff;
}
.availability-period--pm {
  color: #9a5b00;
  background: #fff0d4;
}
.availability-period--full {
  color: #176f64;
  background: #dff5ee;
}
.availability-period--half {
  color: #5c6678;
  background: #edf0f5;
}
.empty-state {
  display: grid;
  min-height: 132px;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 18px;
  border: 1px dashed #d8e0ec;
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
}
.empty-state strong {
  color: var(--ink);
}
.balance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 13px;
}
.balance-card {
  padding: 17px;
  border: 1px solid #e2e8f1;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #f8fbff);
}
.balance-card__top {
  display: flex;
  justify-content: space-between;
  gap: 9px;
}
.balance-card__top strong {
  font-size: 14px;
}
.balance-card__top span {
  color: var(--muted);
  font-size: 12px;
}
.balance-card__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 17px;
}
.balance-card__value strong {
  font:
    800 28px/1 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: -1px;
}
.balance-card__value span {
  color: var(--muted);
  font-size: 12px;
}
.progress {
  height: 6px;
  overflow: hidden;
  margin-top: 14px;
  border-radius: 8px;
  background: #e9eef6;
}
.progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #34a9ef, #18b898);
}
.balance-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
/* leave composer */
.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.92fr) minmax(300px, 0.78fr);
  align-items: start;
  gap: 20px;
}
.request-form {
  padding: 0;
  overflow: hidden;
}
.form-section {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 5px;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
}
.section-number {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font:
    800 14px/1 "Plus Jakarta Sans",
    sans-serif;
}
.section-content h2 {
  margin: 0;
  font:
    800 20px/1.25 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: -0.5px;
}
.section-content > p {
  margin: 5px 0 22px;
  color: var(--muted);
}
.form-grid {
  display: grid;
  gap: 15px;
}
.form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.policy-callout,
.inline-feedback {
  margin-top: 3px;
  padding: 13px 14px;
  border: 1px solid #cfe1ff;
  border-radius: 10px;
  color: #295389;
  background: #f2f7ff;
  font-size: 13px;
}
.policy-callout--warning,
.inline-feedback--warning {
  border-color: #f6dc96;
  color: #8c5b00;
  background: var(--amber-soft);
}
.policy-callout--error,
.inline-feedback--error {
  border-color: #f2c4cd;
  color: #a82d44;
  background: var(--red-soft);
}
.policy-callout strong {
  display: block;
  margin-bottom: 3px;
}
.duration-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}
.duration-control legend {
  width: 100%;
  margin-bottom: 8px;
  color: #334058;
  font-size: 13px;
  font-weight: 700;
}
.duration-control label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid #dbe2ed;
  border-radius: 9px;
  color: #3b4963;
  font-size: 13px;
  font-weight: 700;
}
.duration-control label:has(input:checked) {
  border-color: #92b1ff;
  color: var(--blue);
  background: var(--blue-soft);
}
.duration-control input {
  accent-color: var(--blue);
}
.upload-field {
  display: grid;
  gap: 7px;
  color: #334058;
  font-size: 13px;
  font-weight: 700;
}
.upload-field small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}
.upload-field input {
  width: 100%;
  padding: 10px;
  border: 1px dashed #aec1e2;
  border-radius: 10px;
  color: var(--muted);
  background: #f8fbff;
}
.selected-file {
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}
.request-form > .form-message {
  margin: 14px 30px 0;
}
.request-form > .button {
  width: calc(100% - 60px);
  margin: 17px 30px 30px;
}
.request-summary {
  position: sticky;
  top: 22px;
}
.summary-card,
.summary-help {
  padding: 21px;
  border: 1px solid #dae4f4;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.summary-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.summary-card h2 {
  margin: 3px 0 0;
  font:
    800 18px/1.2 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: -0.5px;
}
.summary-list {
  display: grid;
  gap: 15px;
  margin: 23px 0;
}
.summary-list > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.summary-list span {
  color: var(--muted);
  font-size: 13px;
}
.summary-list strong {
  max-width: 59%;
  text-align: right;
  font-size: 13px;
}
.summary-note {
  padding: 12px;
  border-radius: 10px;
  color: #4b5b74;
  background: #f3f6fb;
  font-size: 12px;
}
.summary-help {
  display: flex;
  gap: 11px;
  margin-top: 14px;
  padding: 16px;
  box-shadow: none;
}
.summary-help__icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: #087c6f;
  background: var(--teal-soft);
  font-weight: 800;
}
.summary-help strong {
  font-size: 13px;
}
.summary-help p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}
/* requests/calendar */
.filter-tabs {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  margin-bottom: 17px;
}
.filter-tabs button {
  flex: none;
  padding: 9px 12px;
  border: 1px solid #dce3ee;
  border-radius: 9px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 700;
}
.filter-tabs button.active {
  border-color: #bfd1ff;
  color: var(--blue);
  background: #eef4ff;
}
.filter-tabs span {
  margin-left: 3px;
  font-size: 11px;
}
.request-list {
  display: grid;
  gap: 10px;
}
.request-row {
  display: grid;
  grid-template-columns:
    46px minmax(145px, 1.1fr) minmax(150px, 1.35fr) minmax(100px, 0.7fr)
    minmax(120px, 0.8fr) auto;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid #e8edf4;
}
.request-row:last-child {
  border-bottom: 0;
}
.request-row__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #6a51c5;
  background: #f0edff;
  font-size: 18px;
}
.request-row strong {
  display: block;
  font-size: 14px;
}
.request-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.request-row__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}
.status-badge:before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
.status-badge--pending {
  color: var(--amber);
  background: var(--amber-soft);
}
.status-badge--approved {
  color: var(--green);
  background: var(--green-soft);
}
.status-badge--rejected {
  color: var(--red);
  background: var(--red-soft);
}
.status-badge--neutral {
  color: #68758d;
  background: #eff2f7;
}
.calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(275px, 0.8fr);
  align-items: start;
  gap: 17px;
}
.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 18px;
}
.calendar-toolbar > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.calendar-toolbar strong {
  min-width: 145px;
  text-align: center;
  font:
    800 17px/1 "Plus Jakarta Sans",
    sans-serif;
}
.calendar-legend {
  color: var(--muted);
  font-size: 11px;
}
.calendar-legend span {
  margin-left: 8px;
}
.legend-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 50%;
}
.legend-dot--mine {
  background: var(--blue);
}
.legend-dot--holiday {
  background: #e3990a;
}
.calendar-date-picker {
  display: grid;
  gap: 5px;
  margin: 14px 0 4px;
}
.calendar-date-picker > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.calendar-date-picker input {
  min-height: 36px;
  padding: 7px 9px;
  font-size: 12px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e1e7f0;
  border-radius: 12px;
}
.calendar-head {
  padding: 9px 4px;
  color: #6f7d95;
  background: #f5f7fb;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}
.calendar-cell {
  position: relative;
  width: 100%;
  min-height: 86px;
  padding: 9px;
  border: 0;
  border-right: 1px solid #e7ebf2;
  border-top: 1px solid #e7ebf2;
  color: inherit;
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.calendar-cell:not(.calendar-cell--blank):hover {
  background: #f6f9ff;
}
.calendar-cell:focus-visible {
  z-index: 1;
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}
.calendar-cell--selected {
  z-index: 1;
  background: #eff5ff;
  box-shadow: inset 0 0 0 2px var(--blue);
}
.calendar-cell:nth-child(7n) {
  border-right: 0;
}
.calendar-cell--blank {
  cursor: default;
  background: #fbfcfe;
}
.calendar-cell--weekend {
  background: #f9fbfd;
}
.calendar-cell__number {
  color: #526178;
  font-size: 12px;
  font-weight: 700;
}
.calendar-event {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  padding: 3px 5px;
  border-radius: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #2451ba;
  background: #e9f0ff;
  font-size: 10px;
  font-weight: 700;
}
.calendar-event--am {
  color: #2451ba;
  background: #e9f0ff;
}
.calendar-event--pm {
  color: #9a5b00;
  background: #fff0d4;
}
.calendar-event--full {
  color: #176f64;
  background: #dff5ee;
}
.calendar-event--half {
  color: #5c6678;
  background: #edf0f5;
}
.calendar-event--holiday {
  color: #955c00;
  background: #fff0ce;
}
.calendar-side__divider {
  height: 1px;
  margin: 22px 0;
  background: var(--line);
}
.holiday-list {
  display: grid;
  gap: 2px;
}
.holiday-row {
  justify-content: space-between;
  gap: 10px;
}
.holiday-row strong {
  color: #3e4c65;
  font-size: 12px;
}
.holiday-row span {
  font-size: 13px;
}
/* security/admin/dialogs */
.security-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.security-grid .surface {
  min-height: 345px;
}
.button-row,
.inline-form {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.inline-form .field {
  flex: 1 1 180px;
  margin: 0;
}
.setup-box {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 20px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.setup-box img {
  width: 145px;
  height: 145px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.recovery-box {
  margin-top: 18px;
  padding: 15px;
  border: 1px solid #e7ce8e;
  border-radius: 11px;
  background: #fff9e8;
}
.recovery-box pre {
  overflow: auto;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  font:
    12px/1.6 ui-monospace,
    monospace;
}
.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.compact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 14px;
}
.compact-form > .button {
  align-self: end;
  margin-bottom: 18px;
}
.data-list {
  overflow: auto;
  border: 1px solid #e3e9f1;
  border-radius: 11px;
}
.data-row {
  display: grid;
  grid-template-columns:
    minmax(140px, 1.2fr) minmax(150px, 1.3fr) minmax(115px, 0.8fr)
    minmax(100px, 0.75fr) auto;
  align-items: center;
  gap: 13px;
  min-width: 670px;
  padding: 13px 15px;
  border-bottom: 1px solid #e9eef4;
}
.data-row:last-child {
  border-bottom: 0;
}
.data-row strong {
  font-size: 13px;
}
.data-row small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.data-row__actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}
.data-list--compact .data-row {
  grid-template-columns: 140px 1fr 1.2fr;
  min-width: 520px;
}
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 5px 8px;
  border: 1px solid #d6e4ff;
  border-radius: 7px;
  color: var(--blue);
  background: #f4f8ff;
  font-size: 11px;
  font-weight: 800;
}
.mini-button--danger {
  border-color: #f3d0d7;
  color: var(--red);
  background: #fff5f6;
}
.mini-button--success {
  border-color: #bcebdc;
  color: #0a8960;
  background: #effbf6;
}
.dialog {
  width: min(calc(100% - 30px), 530px);
  padding: 0;
  border: 0;
  border-radius: 21px;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(20, 32, 58, 0.3);
}
.dialog:backdrop {
  background: rgba(8, 17, 38, 0.58);
  backdrop-filter: blur(3px);
}
.dialog__card {
  position: relative;
  padding: 32px;
  background: #fff;
}
.dialog__card h2 {
  margin: 5px 0 17px;
  font:
    800 25px/1.18 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: -0.8px;
}
.dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: #f2f5fa;
  font-size: 22px;
}
.dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 25px;
}
.review-details {
  display: grid;
  gap: 9px;
  padding: 16px;
  border-radius: 12px;
  background: #f4f7fc;
}
.review-details > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
}
.review-details span {
  color: var(--muted);
}
.review-details strong {
  text-align: right;
}
.dialog__card--success {
  text-align: center;
}
.dialog__card--success .dialog__actions {
  justify-content: center;
}
.success-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #1fb988, #10a3be);
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(20, 165, 131, 0.25);
}
.toast-region {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 9px;
  width: min(380px, calc(100% - 40px));
}
.toast {
  padding: 13px 16px;
  border: 1px solid #c3e8da;
  border-radius: 11px;
  color: #0a6d52;
  background: #f0fbf6;
  box-shadow: 0 10px 28px rgba(20, 43, 81, 0.16);
  font-weight: 700;
  animation: toast-in 0.22s ease-out;
}
.toast--error {
  border-color: #f0c7cf;
  color: #9f293e;
  background: #fff4f5;
}
@keyframes shimmer {
  to {
    background-position: -250% 0;
  }
}
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1120px) {
  .main-content {
    padding-right: 24px;
    padding-left: 24px;
  }
  .request-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(275px, 0.75fr);
  }
  .calendar-cell {
    min-height: 72px;
  }
  .request-row {
    grid-template-columns:
      42px minmax(140px, 1fr) minmax(130px, 1.1fr) minmax(95px, 0.7fr)
      auto;
  }
  .request-row__approver {
    display: none;
  }
}
@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-102%);
    transition: transform 0.2s ease;
  }
  .app-shell.menu-open .sidebar {
    transform: translateX(0);
  }
  .menu-overlay {
    position: fixed;
    z-index: 4;
    inset: 0;
    display: none;
    background: rgba(10, 18, 38, 0.45);
  }
  .app-shell.menu-open .menu-overlay {
    display: block;
  }
  .sidebar__close {
    display: inline-grid;
  }
  .main-content {
    margin-left: 0;
  }
  .menu-button {
    display: inline-grid;
  }
  .breadcrumb {
    margin-right: auto;
    margin-left: 9px;
  }
  .topbar {
    min-height: 75px;
  }
  .home-grid,
  .calendar-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }
  .request-summary {
    position: static;
    order: -1;
  }
  .summary-help {
    display: none;
  }
  .security-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .metric-card {
    min-height: 133px;
    padding: 17px;
  }
  .metric-card strong {
    font-size: 26px;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 14px;
  }
  .auth-page {
    padding: 16px;
  }
  .auth-card {
    padding: 40px 26px 28px;
    border-radius: 22px;
  }
  .brand--auth {
    margin-bottom: 32px;
  }
  .main-content {
    padding: 0 15px 35px;
  }
  .topbar {
    gap: 4px;
  }
  .topbar__actions {
    gap: 6px;
  }
  .topbar__actions .button--small {
    display: none;
  }
  .page-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin: 14px 0 20px;
  }
  .page-intro h1 {
    font-size: 29px;
  }
  .page-intro .lede {
    font-size: 14px;
  }
  .metric-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .metric-card {
    display: grid;
    min-height: 104px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .metric-card strong {
    margin: 6px 0 0;
  }
  .surface {
    padding: 19px;
    border-radius: 15px;
  }
  .surface__heading h2 {
    font-size: 18px;
  }
  .form-section {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 22px 20px;
  }
  .section-number {
    width: 29px;
    height: 29px;
  }
  .form-grid--two,
  .compact-form {
    grid-template-columns: 1fr;
  }
  .request-form > .button {
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }
  .request-form > .form-message {
    margin-right: 20px;
    margin-left: 20px;
  }
  .summary-card {
    padding: 18px;
  }
  .request-row {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 9px;
  }
  .request-row__dates,
  .request-row__days {
    grid-column: 2;
  }
  .request-row__actions {
    grid-column: 2/-1;
    justify-content: flex-start;
  }
  .calendar-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .calendar-cell {
    min-height: 58px;
    padding: 5px;
  }
  .calendar-event {
    padding: 2px 3px;
    font-size: 8px;
  }
  .calendar-head {
    font-size: 9px;
  }
  .calendar-cell__number {
    font-size: 10px;
  }
  .calendar-legend {
    display: none;
  }
  .setup-box {
    grid-template-columns: 1fr;
  }
  .setup-box img {
    margin: auto;
  }
  .dialog__card {
    padding: 28px 22px;
  }
  .dialog__actions {
    flex-direction: column-reverse;
  }
  .dialog__actions .button {
    width: 100%;
  }
  .filter-tabs {
    margin-right: -15px;
    padding-right: 15px;
  }
  .data-row {
    padding: 12px;
  }
  .availability-row {
    align-items: flex-start;
  }
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }
  .button-row .button {
    width: 100%;
  }
}

/* Account menu */
.account-menu {
  position: relative;
}
.account-menu__panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  right: 0;
  width: 242px;
  overflow: hidden;
  border: 1px solid #dce5f0;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(16, 35, 69, 0.18);
}
.account-menu__identity {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 16px;
}
.account-menu__avatar {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #2d67fa, #1bb4dc);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.account-menu__identity strong,
.account-menu__identity span {
  display: block;
}
.account-menu__identity strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}
.account-menu__identity div {
  min-width: 0;
}
.account-menu__identity div span {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}
.account-menu__divider {
  height: 1px;
  background: #edf1f6;
}
.account-menu__action {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font:
    700 13px/1.2 Inter,
    system-ui,
    sans-serif;
  text-align: left;
  cursor: pointer;
}
.account-menu__action:hover,
.account-menu__action:focus-visible {
  outline: 0;
  background: #f4f8ff;
  color: var(--blue);
}
.account-menu__action--danger {
  color: #bf3a4c;
}
.account-menu__action--danger:hover,
.account-menu__action--danger:focus-visible {
  background: #fff3f4;
  color: #a6253a;
}
.account-menu__action span {
  width: 15px;
  text-align: center;
  font-size: 15px;
}
@media (max-width: 640px) {
  .account-menu__panel {
    right: -3px;
    width: 230px;
  }
}

/* Half-day leave is always a single-date request. */
.field--locked {
  position: relative;
}
.field--locked:after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  content: "Same as start date";
}
.field--locked input:disabled {
  padding-right: 112px;
  border-color: #dfe6f0;
  color: #68758b;
  background: #f3f6fb;
  cursor: not-allowed;
}

/* Official Hong Kong holiday import review. */
.import-panel {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid #d8e5f6;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7fbff, #eef8f8);
}
.import-panel h3 {
  margin: 3px 0 5px;
  font-size: 18px;
  color: var(--ink);
}
.import-panel p {
  margin: 0;
}
.import-preview {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}
.import-preview__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.import-preview__summary p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.import-holiday-list {
  display: grid;
  max-height: 330px;
  overflow: auto;
  border: 1px solid #e3eaf3;
  border-radius: 12px;
  background: #fff;
}
.import-holiday-row {
  display: grid;
  grid-template-columns: auto 116px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-bottom: 1px solid #edf1f6;
  cursor: pointer;
}
.import-holiday-row:last-child {
  border-bottom: 0;
}
.import-holiday-row:has(input:disabled) {
  cursor: default;
}
.import-holiday-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}
.import-holiday-row__date {
  font-size: 12px;
  font-weight: 800;
  color: #3c577b;
}
.import-holiday-row__name {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.import-holiday-row__name strong {
  font-size: 13px;
  color: var(--ink);
}
.import-holiday-row__name small {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}
.import-holiday-row--existing {
  background: #fafbfd;
}
.import-holiday-row--conflict {
  background: #fff8f8;
}
.import-preview__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 700px) {
  .import-preview__summary {
    display: grid;
  }
  .import-holiday-row {
    grid-template-columns: auto 1fr;
    gap: 7px 10px;
  }
  .import-holiday-row__date {
    grid-column: 2;
  }
  .import-holiday-row__name {
    grid-column: 2;
  }
  .import-holiday-row .status-badge {
    grid-column: 2;
    justify-self: start;
  }
  .import-preview__actions {
    justify-content: stretch;
  }
  .import-preview__actions .button {
    flex: 1;
  }
}

/* Keep policy review immediately below policy creation without competing with holiday administration. */
.policy-list-panel {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #e6edf5;
}
.policy-list-panel .surface__heading {
  margin-bottom: 14px;
}
.policy-list-panel .surface__heading .muted {
  margin: 5px 0 0;
  font-size: 13px;
}
.policy-list-panel .data-list {
  margin-top: 0;
}

/* Readable two-line holiday records. */
.holiday-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #e8edf4;
}
.holiday-row:last-child {
  border-bottom: 0;
}
.holiday-row__details {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.holiday-row__details strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}
.holiday-row__details span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
@media (max-width: 520px) {
  .holiday-row {
    align-items: flex-start;
  }
  .holiday-row .mini-button {
    flex: none;
  }
}

/* Optional passkey enrollment reminder. */
.passkey-reminder {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
  padding: 17px 18px;
  border: 1px solid #bed6ff;
  border-radius: 16px;
  background: linear-gradient(115deg, #f3f7ff, #eefbfb);
  box-shadow: 0 10px 24px rgba(36, 93, 199, 0.07);
}
.passkey-reminder__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #2d64ea, #20b8da);
  font-size: 19px;
}
.passkey-reminder__content {
  min-width: 0;
}
.passkey-reminder__content .eyebrow {
  margin: 0 0 3px;
}
.passkey-reminder__content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}
.passkey-reminder__content p:not(.eyebrow) {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.passkey-reminder__actions {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .passkey-reminder {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .passkey-reminder__actions {
    grid-column: 1/-1;
    justify-content: flex-end;
  }
}
@media (max-width: 440px) {
  .passkey-reminder {
    grid-template-columns: 1fr;
  }
  .passkey-reminder__icon {
    display: none;
  }
  .passkey-reminder__actions {
    grid-column: auto;
    justify-content: stretch;
  }
  .passkey-reminder__actions .button {
    flex: 1;
  }
}

/* Password visibility controls for registration and first-login password change. */
.password-field {
  position: relative;
  display: block;
}
.password-field input {
  width: 100%;
  padding-right: 68px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 7px;
  padding: 5px 8px;
  color: var(--blue);
  background: #eef4ff;
  font: 800 11px/1 inherit;
  cursor: pointer;
}
.password-toggle:hover,
.password-toggle:focus-visible {
  color: #164cb5;
  background: #dfeaff;
  outline: none;
}
.password-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}
.field > .text-button {
  margin-top: 7px;
  width: fit-content;
}

/* Department management rows. */
.department-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 15px;
  border-bottom: 1px solid #e9eef4;
}
.department-row:last-child {
  border-bottom: 0;
}
.department-row__identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.department-row__identity strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
  font-size: 14px;
}
.department-row__actions {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
@media (max-width: 520px) {
  .department-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .department-row__actions {
    width: 100%;
    justify-content: flex-start;
  }
  .department-row__identity {
    flex-wrap: wrap;
  }
}

/* Login password visibility states. */
.password-eye-toggle {
  display: grid;
  place-items: center;
}
.password-eye-toggle svg {
  width: 19px;
  height: 19px;
}
.password-eye-toggle__closed {
  display: none;
}
.password-eye-toggle[data-visible="true"] .password-eye-toggle__open {
  display: none;
}
.password-eye-toggle[data-visible="true"] .password-eye-toggle__closed {
  display: block;
}

/* Invite-only employee activation. */
.account-invite-section {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.account-invite-section .surface__heading {
  margin-bottom: 0.5rem;
}
.invitation-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  background: #eef4ff;
  color: #2e66ca;
}
.invitation-status--accepted {
  background: #e7f8ef;
  color: #138055;
}
.invitation-status--expired,
.invitation-status--revoked {
  background: #fff0f1;
  color: #b8425d;
}
