.etleb-inline-form {
  display: inline;
  margin-left: 7px;
}

.etleb-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #a33c34;
  font-size: 9px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.etleb-sidebar nav .etleb-external-nav {
  margin-top: 7px;
  border: 1px solid rgba(255, 130, 0, .34);
  background: rgba(255, 130, 0, .08);
  color: #fff !important;
}

.etleb-sidebar nav .etleb-external-nav:hover,
.etleb-sidebar nav .etleb-external-nav:focus-visible {
  border-color: rgba(255, 130, 0, .7);
  background: rgba(255, 130, 0, .15);
}

.etleb-quick-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.etleb-pay-profile {
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: -8px 0 16px;
  padding: 15px 18px;
  border: 1px solid #cbd9e6;
  border-left: 4px solid var(--etleb-orange);
  border-radius: 9px;
  background: #fff;
}

.etleb-pay-profile small,
.etleb-pay-profile strong {
  display: block;
}

.etleb-pay-profile small {
  color: var(--etleb-muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.etleb-pay-profile strong {
  margin-top: 3px;
  color: var(--etleb-navy);
  font-size: 13px;
}

.etleb-pay-profile p {
  margin: 0;
  color: #40536b;
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
}

.etleb-pay-profile.unconfigured {
  border-color: #efd2b3;
  border-left-color: #b85e00;
  background: #fff9f3;
}

.etleb-payroll-schedule {
  display: grid;
  grid-template-columns: minmax(230px, .75fr) minmax(0, 1.5fr);
  gap: 28px;
  align-items: center;
  margin: 0 0 16px;
  padding: 24px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--etleb-navy);
  color: #fff;
  box-shadow: 0 10px 28px rgba(6, 24, 50, .11);
}

.etleb-payroll-schedule.compact {
  max-width: 960px;
}

.etleb-payroll-schedule-intro h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.08;
}

.etleb-payroll-schedule-intro > p:last-child {
  margin: 11px 0 0;
  color: #b9c7d6;
  font-size: 9px;
  line-height: 1.65;
}

.etleb-payroll-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.etleb-payroll-date {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .065);
}

.etleb-payroll-date small {
  color: #9fb0c2;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.etleb-payroll-date strong {
  margin: 17px 0 7px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.etleb-payroll-date span {
  margin-top: auto;
  color: #c8d3df;
  font-size: 8px;
  line-height: 1.5;
}

.etleb-payroll-date.deadline {
  border-top: 3px solid var(--etleb-orange);
}

.etleb-payroll-date.deadline.due-today {
  border-color: var(--etleb-orange);
  background: rgba(255, 130, 0, .14);
}

.etleb-payroll-date.deadline.due-today small,
.etleb-payroll-date.deadline.due-today span {
  color: #ffd5a8;
}

.etleb-payroll-date.deadline.past-due {
  border-color: #e6a49f;
  background: rgba(159, 54, 47, .22);
}

.etleb-payroll-date.deadline.past-due small,
.etleb-payroll-date.deadline.past-due span {
  color: #f4c7c3;
}

@media (max-width: 980px) {
  .etleb-payroll-schedule {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .etleb-payroll-schedule {
    padding: 20px;
  }

  .etleb-payroll-schedule-grid {
    grid-template-columns: 1fr;
  }

  .etleb-payroll-date {
    min-height: 112px;
  }
}

/* 1.2 staff command center */
.etleb-briefing {
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid #d9e2ea;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(6, 24, 50, .055);
}

.etleb-briefing > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 24px;
  border-bottom: 1px solid #e6ebf0;
  background: linear-gradient(115deg, #fff 0%, #f6f9fc 100%);
}

.etleb-briefing > header h2 {
  margin: 0;
  color: var(--etleb-navy);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.etleb-briefing > header > a,
.etleb-briefing-card-head a,
.etleb-briefing-deadline a {
  color: var(--etleb-orange-dark) !important;
  font-size: 9px;
  font-weight: 850;
  text-decoration: none !important;
}

.etleb-briefing-grid {
  display: grid;
  grid-template-columns: .72fr 1.35fr .9fr;
  min-height: 225px;
}

.etleb-briefing-grid > article {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid #e6ebf0;
}

.etleb-briefing-grid > article:last-child { border-right: 0; }
.etleb-briefing-grid article > small,
.etleb-briefing-card-head small {
  display: block;
  color: var(--etleb-muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.etleb-briefing-deadline { border-top: 3px solid var(--etleb-orange); }
.etleb-briefing-deadline.due-today { background: #fff8f1; }
.etleb-briefing-deadline.past-due { border-top-color: #b2524a; background: #fff7f6; }
.etleb-briefing-deadline > strong {
  display: block;
  margin: 22px 0 8px;
  color: var(--etleb-navy);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}
.etleb-briefing-deadline p { min-height: 46px; margin: 0 0 18px; color: #53667b; font-size: 9px; line-height: 1.55; }

.etleb-briefing-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.etleb-briefing-card-head strong { display: block; margin-top: 4px; color: var(--etleb-navy); font-size: 11px; }
.etleb-briefing-schedule ul,
.etleb-briefing-ready ul { margin: 17px 0 0; padding: 0; list-style: none; }
.etleb-briefing-schedule li { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 12px; padding: 10px 0; border-top: 1px solid #edf1f4; }
.etleb-briefing-schedule li time b,
.etleb-briefing-schedule li time span { display: block; }
.etleb-briefing-schedule li time b { color: var(--etleb-orange-dark); font-size: 8px; text-transform: uppercase; }
.etleb-briefing-schedule li time span { margin-top: 3px; color: var(--etleb-muted); font-size: 7px; }
.etleb-briefing-schedule li > strong { overflow: hidden; color: #2c4460; font-size: 9px; line-height: 1.45; text-overflow: ellipsis; }
.etleb-briefing-empty { margin-top: 20px; color: var(--etleb-muted); font-size: 9px; }

.etleb-briefing-ready > small { margin-bottom: 5px; }
.etleb-briefing-ready li { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid #edf1f4; }
.etleb-briefing-ready li:last-child { border-bottom: 0; }
.etleb-briefing-ready li > span { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 26px; border-radius: 50%; background: #e9f5ef; color: #197a57; font-size: 9px; font-weight: 900; }
.etleb-briefing-ready li.needs-attention > span { background: #fff0df; color: #a85808; }
.etleb-briefing-ready li.is-pending > span { background: #edf2f8; color: var(--etleb-navy); }
.etleb-briefing-ready li p { margin: 0; }
.etleb-briefing-ready li strong,
.etleb-briefing-ready li small { display: block; }
.etleb-briefing-ready li strong { color: var(--etleb-navy); font-size: 9px; }
.etleb-briefing-ready li small { margin-top: 3px; color: var(--etleb-muted); font-size: 7px; line-height: 1.4; }

/* Calendar filters */
.etleb-calendar-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 13px 20px;
  align-items: center;
  padding: 0 24px 21px;
  border-bottom: 1px solid #e5eaf0;
}
.etleb-calendar-filters,
.etleb-resource-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.etleb-calendar-filters button,
.etleb-resource-filters button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d8e0e8;
  border-radius: 18px;
  background: #fff;
  color: #41556d;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}
.etleb-calendar-filters button:hover,
.etleb-calendar-filters button:focus-visible,
.etleb-resource-filters button:hover,
.etleb-resource-filters button:focus-visible { border-color: #efaa61; }
.etleb-calendar-filters button.active,
.etleb-resource-filters button.active { border-color: var(--etleb-navy); background: var(--etleb-navy); color: #fff; }
.etleb-calendar-search { position: relative; }
.etleb-calendar-search input { width: 100%; min-height: 38px; padding: 0 38px 0 12px; border: 1px solid #d4dce4; border-radius: 7px; background: #f8fafc; color: var(--etleb-navy); font-size: 9px; }
.etleb-calendar-search input:focus { outline: 3px solid rgba(255, 130, 0, .14); border-color: var(--etleb-orange); background: #fff; }
.etleb-calendar-search b { position: absolute; top: 50%; right: 13px; color: var(--etleb-orange-dark); transform: translateY(-50%); }
.etleb-calendar-controls > p { grid-column: 1 / -1; margin: -3px 0 0; color: var(--etleb-muted); font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.etleb-calendar-filter-empty { margin: 0 24px 22px; padding: 24px; border: 1px dashed #cdd7e1; border-radius: 9px; background: #f8fafc; text-align: center; }
.etleb-calendar-filter-empty[hidden] { display: none !important; }
.etleb-calendar-filter-empty strong { color: var(--etleb-navy); font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.etleb-calendar-filter-empty p { margin: 6px auto 0; max-width: 600px; color: var(--etleb-muted); font-size: 8px; line-height: 1.55; }
.etleb-agenda-day[hidden],
.etleb-agenda-event[hidden] { display: none !important; }

/* Resource discovery */
.etleb-resource-filters { margin: 16px 0 0; }
.etleb-playbook-promo {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin: 0 0 16px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid #efb06d;
  border-radius: 11px;
  background: linear-gradient(110deg, #fffaf4 0%, #fff 65%);
  color: var(--etleb-navy) !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(6, 24, 50, .045);
}
.etleb-playbook-promo > span { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--etleb-orange); color: var(--etleb-deep); font-family: Georgia, serif; font-size: 20px; }
.etleb-playbook-promo p { margin-bottom: 5px; }
.etleb-playbook-promo strong,
.etleb-playbook-promo small { display: block; }
.etleb-playbook-promo strong { font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.etleb-playbook-promo small { margin-top: 5px; color: var(--etleb-muted); font-size: 8px; line-height: 1.5; }
.etleb-playbook-promo > b { color: var(--etleb-orange-dark); font-size: 9px; text-transform: uppercase; }
.etleb-playbook-promo > b i { margin-left: 8px; font-size: 16px; font-style: normal; }

/* Operations playbook */
.etleb-playbook-hero {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 240px;
  align-items: center;
  gap: 40px;
  padding: 42px;
  border-radius: 14px;
  background: var(--etleb-navy);
  color: #fff;
  box-shadow: 0 16px 38px rgba(6, 24, 50, .15);
}
.etleb-playbook-hero h1 { max-width: 700px; margin: 0; color: #fff; font-family: Georgia, serif; font-size: 45px; font-weight: 400; line-height: 1.03; }
.etleb-playbook-hero div > p:not(.etleb-eyebrow) { max-width: 680px; margin: 15px 0 22px; color: #c5d1de; font-size: 11px; line-height: 1.7; }
.etleb-playbook-hero div > div { display: flex; flex-wrap: wrap; gap: 9px; }
.etleb-playbook-hero .etleb-button:not(.etleb-primary) { border-color: rgba(255,255,255,.25); background: transparent; color: #fff !important; }
.etleb-playbook-hero aside { min-height: 190px; display: flex; flex-direction: column; justify-content: center; padding: 28px; border: 1px solid rgba(255,255,255,.17); border-radius: 11px; background: rgba(255,255,255,.06); }
.etleb-playbook-hero aside span { color: var(--etleb-orange); font-family: Georgia, serif; font-size: 58px; line-height: 1; }
.etleb-playbook-hero aside strong { margin-top: 10px; font-size: 11px; }
.etleb-playbook-hero aside small { margin-top: 8px; color: #aebdcb; font-size: 8px; line-height: 1.6; }

.etleb-playbook-nav { position: sticky; top: 0; z-index: 10; display: grid; grid-template-columns: repeat(5, 1fr); margin: 14px 0 16px; overflow: hidden; border: 1px solid #dbe3ea; border-radius: 10px; background: rgba(255,255,255,.96); box-shadow: 0 6px 20px rgba(6,24,50,.05); backdrop-filter: blur(10px); }
.etleb-playbook-nav a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-right: 1px solid #e7ecf0; color: var(--etleb-navy) !important; font-size: 8px; font-weight: 850; text-decoration: none !important; text-transform: uppercase; }
.etleb-playbook-nav a:last-child { border-right: 0; }
.etleb-playbook-nav span { color: var(--etleb-orange-dark); }
.etleb-playbook-nav a:hover,
.etleb-playbook-nav a:focus-visible { background: #fff8f1; }

.etleb-launchpad { margin-bottom: 16px; padding: 28px; border: 1px solid #dbe3ea; border-radius: 12px; background: #fff; }
.etleb-launchpad-head { display: grid; grid-template-columns: minmax(0,1fr) 210px; gap: 30px; align-items: center; }
.etleb-launchpad-head h2 { margin: 0; color: var(--etleb-navy); font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.etleb-launchpad-head > div > p:last-child { margin: 7px 0 0; color: var(--etleb-muted); font-size: 8px; }
.etleb-launch-progress strong { display: block; color: var(--etleb-navy); font-family: Georgia, serif; font-size: 27px; font-weight: 400; text-align: right; }
.etleb-launch-progress > span { height: 6px; display: block; margin-top: 8px; overflow: hidden; border-radius: 8px; background: #e8edf2; }
.etleb-launch-progress i { width: 0; height: 100%; display: block; border-radius: inherit; background: var(--etleb-orange); transition: width .25s ease; }
.etleb-launch-progress small { display: block; margin-top: 6px; color: var(--etleb-muted); font-size: 7px; text-align: right; }
.etleb-launch-items { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 22px; }
.etleb-launch-items label { position: relative; cursor: pointer; }
.etleb-launch-items input { position: absolute; opacity: 0; pointer-events: none; }
.etleb-launch-items label > span { min-height: 92px; display: grid; grid-template-columns: 31px minmax(0,1fr); grid-template-rows: auto auto; gap: 2px 10px; align-content: center; padding: 15px; border: 1px solid #dfe5eb; border-radius: 8px; background: #fafbfc; transition: .15s ease; }
.etleb-launch-items label > span > b { width: 31px; height: 31px; display: grid; grid-row: 1 / span 2; place-items: center; border-radius: 50%; background: #e9eef3; color: var(--etleb-navy); font-size: 7px; }
.etleb-launch-items label strong { color: var(--etleb-navy); font-size: 9px; }
.etleb-launch-items label small { color: var(--etleb-muted); font-size: 7px; line-height: 1.4; }
.etleb-launch-items input:focus-visible + span { outline: 3px solid rgba(255,130,0,.18); border-color: var(--etleb-orange); }
.etleb-launch-items input:checked + span { border-color: #a8d2be; background: #f1f9f5; }
.etleb-launch-items input:checked + span > b { background: #197a57; color: #fff; font-size: 0; }
.etleb-launch-items input:checked + span > b::after { content: "✓"; font-size: 10px; }
.etleb-launchpad.is-complete { border-color: #a8d2be; box-shadow: 0 10px 28px rgba(25,122,87,.07); }

.etleb-playbook-notice { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding: 17px 20px; border: 1px solid #f0d2b1; border-radius: 9px; background: #fff9f3; }
.etleb-playbook-notice > span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; border-radius: 50%; background: var(--etleb-orange); color: var(--etleb-deep); font-weight: 900; }
.etleb-playbook-notice p { margin: 0; }
.etleb-playbook-notice strong,
.etleb-playbook-notice small { display: block; }
.etleb-playbook-notice strong { color: var(--etleb-navy); font-size: 9px; }
.etleb-playbook-notice small { margin-top: 4px; color: #6a5a49; font-size: 8px; line-height: 1.5; }

.etleb-playbook-guides { display: grid; gap: 16px; }
.etleb-playbook-guide { scroll-margin-top: 65px; overflow: hidden; border: 1px solid #dbe3ea; border-radius: 12px; background: #fff; }
.etleb-playbook-guide > header { display: grid; grid-template-columns: 54px minmax(0,1fr) auto; align-items: center; gap: 18px; padding: 24px 27px; border-bottom: 1px solid #e7ecf0; background: linear-gradient(110deg,#f8fafc,#fff); }
.etleb-playbook-guide > header > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--etleb-navy); color: var(--etleb-orange); font-family: Georgia, serif; font-size: 18px; }
.etleb-playbook-guide > header p { margin: 0 0 4px; color: var(--etleb-orange-dark); font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.etleb-playbook-guide > header h2 { margin: 0; color: var(--etleb-navy); font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.etleb-playbook-guide > header a { color: var(--etleb-orange-dark) !important; font-size: 8px; font-weight: 850; text-decoration: none !important; text-transform: uppercase; }
.etleb-playbook-guide > header a b { margin-left: 7px; font-size: 15px; }
.etleb-guide-body { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(220px,.55fr); gap: 28px; padding: 28px; }
.etleb-guide-body ol { margin: 0; padding: 0; counter-reset: guide; list-style: none; }
.etleb-guide-body ol li { position: relative; min-height: 53px; padding: 0 0 18px 43px; counter-increment: guide; }
.etleb-guide-body ol li::before { content: counter(guide); position: absolute; top: 0; left: 0; width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #d4dde5; border-radius: 50%; color: var(--etleb-orange-dark); font-size: 8px; font-weight: 900; }
.etleb-guide-body ol li:not(:last-child)::after { content: ""; position: absolute; top: 31px; bottom: 3px; left: 13px; width: 1px; background: #dfe5eb; }
.etleb-guide-body ol b,
.etleb-guide-body ol span { display: block; }
.etleb-guide-body ol b { color: var(--etleb-navy); font-size: 10px; }
.etleb-guide-body ol span { margin-top: 4px; color: #586a7e; font-size: 8px; line-height: 1.55; }
.etleb-guide-body aside { align-self: start; padding: 21px; border-left: 3px solid var(--etleb-orange); border-radius: 0 8px 8px 0; background: #f7f9fb; }
.etleb-guide-body aside > strong { color: var(--etleb-navy); font-size: 9px; }
.etleb-guide-body aside p,
.etleb-guide-body aside ul { margin: 10px 0 0; color: #586a7e; font-size: 8px; line-height: 1.6; }
.etleb-guide-body aside ul { padding-left: 16px; }

@media (max-width: 1050px) {
  .etleb-briefing-grid { grid-template-columns: 1fr 1.4fr; }
  .etleb-briefing-ready { grid-column: 1 / -1; }
  .etleb-briefing-grid > article:nth-child(2) { border-right: 0; }
  .etleb-briefing-grid > article:last-child { border-top: 1px solid #e6ebf0; }
}

@media (max-width: 760px) {
  .etleb-briefing > header { align-items: flex-start; flex-direction: column; padding: 19px; }
  .etleb-briefing-grid { grid-template-columns: 1fr; }
  .etleb-briefing-grid > article { padding: 19px; border-right: 0; border-bottom: 1px solid #e6ebf0; }
  .etleb-briefing-grid > article:last-child { grid-column: auto; border-top: 0; border-bottom: 0; }
  .etleb-calendar-controls { grid-template-columns: 1fr; padding: 0 18px 18px; }
  .etleb-calendar-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
  .etleb-calendar-filters button { flex: 0 0 auto; }
  .etleb-calendar-controls > p { grid-column: auto; }
  .etleb-playbook-promo { grid-template-columns: 48px minmax(0,1fr); padding: 18px; }
  .etleb-playbook-promo > span { width: 48px; height: 48px; }
  .etleb-playbook-promo > b { grid-column: 2; }
  .etleb-playbook-hero { grid-template-columns: 1fr; gap: 25px; padding: 28px 22px; }
  .etleb-playbook-hero h1 { font-size: 36px; }
  .etleb-playbook-hero aside { min-height: auto; }
  .etleb-playbook-nav { position: relative; grid-template-columns: 1fr 1fr; }
  .etleb-playbook-nav a { border-bottom: 1px solid #e7ecf0; }
  .etleb-playbook-nav a:nth-child(even) { border-right: 0; }
  .etleb-playbook-nav a:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .etleb-launchpad { padding: 21px 18px; }
  .etleb-launchpad-head { grid-template-columns: 1fr; }
  .etleb-launch-progress strong,
  .etleb-launch-progress small { text-align: left; }
  .etleb-launch-items { grid-template-columns: 1fr; }
  .etleb-playbook-guide > header { grid-template-columns: 45px minmax(0,1fr); padding: 20px 18px; }
  .etleb-playbook-guide > header > span { width: 45px; height: 45px; }
  .etleb-playbook-guide > header h2 { font-size: 21px; }
  .etleb-playbook-guide > header a { grid-column: 2; }
  .etleb-guide-body { grid-template-columns: 1fr; padding: 22px 18px; }
}

.etleb-resource-heading {
  align-items: center;
}

.etleb-resource-intro {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(300px, 1.28fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 16px;
  padding: 22px 24px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--etleb-navy);
  color: #fff;
  box-shadow: 0 10px 28px rgba(6, 24, 50, .11);
}

.etleb-resource-intro > p {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .18);
  color: #c7d3df;
  font-size: 10px;
  line-height: 1.65;
}

.etleb-resource-intro > p strong {
  color: var(--etleb-orange);
}

.etleb-resource-count {
  display: flex;
  align-items: center;
  gap: 16px;
}

.etleb-resource-count > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: var(--etleb-orange);
  font-family: Georgia, serif;
  font-size: 25px;
}

.etleb-resource-count strong,
.etleb-resource-count small {
  display: block;
}

.etleb-resource-count strong {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.etleb-resource-count small {
  margin-top: 4px;
  color: #9fb0c2;
  font-size: 8px;
  letter-spacing: .04em;
}

.etleb-resource-directory {
  padding: 26px;
}

.etleb-resource-directory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.etleb-resource-directory-head h2 {
  margin: 0;
  color: var(--etleb-navy);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.etleb-resource-search {
  width: min(310px, 42%);
  position: relative;
}

.etleb-resource-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 42px 0 13px;
  border: 1px solid #d4dce4;
  border-radius: 7px;
  background: #f8fafc;
  color: var(--etleb-navy);
  font-size: 11px;
}

.etleb-resource-search input:focus {
  outline: 3px solid rgba(255, 130, 0, .14);
  border-color: var(--etleb-orange);
  background: #fff;
}

.etleb-resource-search b {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--etleb-orange-dark);
  font-size: 16px;
  transform: translateY(-50%);
}

.etleb-resource-results {
  margin: 12px 0 17px;
  color: var(--etleb-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.etleb-resource-page .etleb-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.etleb-resource-page .etleb-resource-grid > .etleb-resource-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 0 16px;
  padding: 20px;
  border: 1px solid #dde4ea;
  border-radius: 10px;
  background: #fff;
  color: var(--etleb-navy) !important;
  text-decoration: none !important;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.etleb-resource-page .etleb-resource-grid > .etleb-resource-card:hover,
.etleb-resource-page .etleb-resource-grid > .etleb-resource-card:focus-visible {
  border-color: #efaa61;
  box-shadow: 0 10px 24px rgba(6, 24, 50, .08);
  transform: translateY(-2px);
}

.etleb-resource-icon {
  width: 46px !important;
  height: 46px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #edf2f7 !important;
  color: var(--etleb-navy) !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.etleb-resource-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.etleb-resource-card-copy em {
  color: var(--etleb-orange-dark);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.etleb-resource-card-copy strong {
  margin-top: 9px !important;
  font-family: Georgia, serif;
  font-size: 20px !important;
  font-weight: 400;
  line-height: 1.15;
}

.etleb-resource-card-copy small {
  margin-top: 8px !important;
  color: var(--etleb-muted);
  font-size: 9px !important;
  line-height: 1.55;
}

.etleb-resource-card-action {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid #edf0f3;
}

.etleb-resource-card-action b {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--etleb-navy) !important;
  font-size: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.etleb-resource-card-action i {
  color: var(--etleb-orange-dark);
  font-size: 17px;
  font-style: normal;
}

.etleb-resource-card[hidden] {
  display: none !important;
}

.etleb-resource-no-results {
  padding: 34px;
  border: 1px dashed #cfd8e2;
  border-radius: 8px;
  background: #fafbfc;
  text-align: center;
}

.etleb-resource-no-results strong {
  color: var(--etleb-navy);
}

.etleb-resource-no-results p {
  margin: 6px 0 0;
  color: var(--etleb-muted);
  font-size: 9px;
}

.etleb-staff-tools {
  padding: 24px 26px 26px;
}

.etleb-staff-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.etleb-staff-tool-grid a {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 2px 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e0e5ea;
  border-radius: 8px;
  background: #fafbfc;
  color: var(--etleb-navy) !important;
  text-decoration: none !important;
}

.etleb-staff-tool-grid a:hover,
.etleb-staff-tool-grid a:focus-visible {
  border-color: #efaa61;
  background: #fffaf5;
}

.etleb-staff-tool-grid span {
  width: 32px;
  height: 32px;
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 6px;
  background: var(--etleb-navy);
  color: var(--etleb-orange);
  font-size: 10px;
  font-weight: 900;
}

.etleb-staff-tool-grid strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.etleb-staff-tool-grid small {
  color: var(--etleb-muted);
  font-size: 7px;
  line-height: 1.35;
}

.etleb-library-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 17px;
  color: var(--etleb-orange-dark) !important;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .04em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.etleb-library-back span {
  font-size: 15px;
  line-height: 1;
}

.etleb-library-hero {
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 14px;
  padding: 38px 40px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  background: var(--etleb-navy);
  color: #fff;
  box-shadow: 0 12px 32px rgba(6, 24, 50, .14);
}

.etleb-library-hero::before,
.etleb-library-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.etleb-library-hero::before {
  width: 300px;
  height: 300px;
  top: -184px;
  right: 80px;
}

.etleb-library-hero::after {
  width: 200px;
  height: 200px;
  right: -86px;
  bottom: -98px;
  border-color: rgba(255, 130, 0, .18);
}

.etleb-library-hero > div:first-child {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.etleb-library-hero h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 57px);
  font-weight: 400;
  line-height: 1;
}

.etleb-library-hero > div:first-child > p:last-child {
  max-width: 620px;
  margin: 17px 0 0;
  color: #c2cfdd;
  font-size: 12px;
  line-height: 1.65;
}

.etleb-library-mark {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  flex: 0 0 104px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
}

.etleb-library-mark span,
.etleb-library-mark small {
  grid-area: 1 / 1;
}

.etleb-library-mark span {
  margin-top: -17px;
  color: var(--etleb-orange);
  font-family: Georgia, serif;
  font-size: 37px;
}

.etleb-library-mark small {
  margin-top: 41px;
  color: #b9c6d4;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.etleb-library-control {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  padding: 14px 18px;
  border: 1px solid #c7dfd3;
  border-radius: 9px;
  background: #f3faf6;
}

.etleb-library-control > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--etleb-green);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.etleb-library-control p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.etleb-library-control strong {
  color: #205f49;
  font-size: 10px;
}

.etleb-library-control small {
  color: #587567;
  font-size: 8px;
  line-height: 1.45;
}

.etleb-library-directory {
  padding: 27px;
}

.etleb-library-directory .etleb-resource-results {
  margin-bottom: 19px;
}

.etleb-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.etleb-library-card {
  min-width: 0;
  min-height: 225px;
  display: flex;
  flex-direction: column;
  padding: 19px;
  border: 1px solid #dce3e9;
  border-radius: 10px;
  background: #fff;
  color: var(--etleb-navy) !important;
  text-decoration: none !important;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.etleb-library-card:hover,
.etleb-library-card:focus-visible {
  border-color: #eca65b;
  box-shadow: 0 10px 25px rgba(6, 24, 50, .08);
  transform: translateY(-2px);
}

.etleb-library-card[hidden] {
  display: none !important;
}

.etleb-library-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #edf2f7;
  color: var(--etleb-navy);
  font-size: 9px;
  font-weight: 900;
}

.etleb-library-card > div {
  min-width: 0;
}

.etleb-library-card > div > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 14px 0 0;
}

.etleb-library-card em {
  overflow: hidden;
  color: var(--etleb-orange-dark);
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .07em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.etleb-library-card i {
  padding: 3px 5px;
  border-radius: 4px;
  background: #eef2f6;
  color: var(--etleb-muted);
  font-size: 6px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .05em;
}

.etleb-library-card strong {
  display: block;
  margin-top: 9px;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.etleb-library-card small {
  display: block;
  margin-top: 8px;
  color: var(--etleb-muted);
  font-size: 8px;
  line-height: 1.5;
}

.etleb-library-card > b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #edf0f3;
  color: var(--etleb-navy);
  font-size: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.etleb-library-card > b span {
  color: var(--etleb-orange-dark);
  font-size: 13px;
}

.etleb-calendar-heading {
  align-items: center;
}

.etleb-calendar-shell {
  overflow: hidden;
  border: 1px solid var(--etleb-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(6, 24, 50, .06);
}

.etleb-calendar-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--etleb-line);
  background: #f8fafc;
}

.etleb-calendar-note > span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--etleb-green);
  box-shadow: 0 0 0 5px rgba(25, 122, 87, .1);
}

.etleb-calendar-note.is-stale > span {
  background: var(--etleb-orange-dark);
  box-shadow: 0 0 0 5px rgba(255, 130, 0, .12);
}

.etleb-calendar-note p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.etleb-calendar-note strong {
  color: var(--etleb-navy);
  font-size: 11px;
}

.etleb-calendar-note small,
.etleb-calendar-help {
  color: var(--etleb-muted);
  font-size: 9px;
}

.etleb-calendar-note time {
  margin-left: auto;
  color: var(--etleb-muted);
  font-size: 8px;
  font-weight: 750;
  white-space: nowrap;
}

.etleb-agenda-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 27px 17px;
}

.etleb-agenda-toolbar h2 {
  margin: 2px 0 0;
  color: var(--etleb-navy);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.etleb-agenda-toolbar > p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--etleb-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.etleb-agenda-toolbar > p span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--etleb-green);
}

.etleb-agenda-list {
  padding: 0 27px 25px;
}

.etleb-agenda-day {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--etleb-line);
}

.etleb-agenda-day > header {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: start;
  align-items: center;
  gap: 0 9px;
}

.etleb-agenda-day > header b {
  grid-row: 1 / span 2;
  color: var(--etleb-navy);
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.etleb-agenda-day > header > span {
  color: var(--etleb-orange-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.etleb-agenda-day > header small {
  display: block;
  margin-top: 2px;
  color: var(--etleb-muted);
  font-size: 8px;
}

.etleb-agenda-day > header em {
  grid-column: 1 / -1;
  width: max-content;
  margin-top: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 130, 0, .12);
  color: var(--etleb-orange-dark);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.etleb-agenda-events {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.etleb-agenda-event {
  min-width: 0;
  display: grid;
  grid-template-columns: 5px minmax(0, 1fr);
  gap: 13px;
  padding: 13px 15px 13px 11px;
  border: 1px solid #dce3e9;
  border-radius: 9px;
  background: #fff;
}

.etleb-agenda-event > i {
  width: 4px;
  min-height: 38px;
  border-radius: 999px;
  background: #6f8092;
}

.etleb-agenda-event.category-aoc > i { background: var(--etleb-orange); }
.etleb-agenda-event.category-soc > i { background: #385f8c; }
.etleb-agenda-event.category-lab > i { background: #1c8a72; }
.etleb-agenda-event.category-recovery > i { background: #8258a4; }
.etleb-agenda-event.category-leave > i { background: #b2524a; }

.etleb-agenda-event strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--etleb-navy);
  font-size: 11px;
  line-height: 1.35;
}

.etleb-agenda-event p {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  margin: 5px 0 0;
  color: var(--etleb-muted);
  font-size: 8px;
  line-height: 1.5;
}

.etleb-agenda-event p span + span::before {
  content: "";
  width: 3px;
  height: 3px;
  display: inline-block;
  margin: 0 7px 2px 0;
  border-radius: 50%;
  background: #a8b3bf;
}

.etleb-calendar-status {
  padding: 52px 28px;
  text-align: center;
}

.etleb-calendar-status strong {
  color: var(--etleb-navy);
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.etleb-calendar-status p {
  margin: 8px auto 0;
  color: var(--etleb-muted);
  font-size: 10px;
}

.etleb-calendar-status a {
  display: inline-block;
  margin-top: 13px;
  color: var(--etleb-orange-dark);
  font-size: 9px;
  font-weight: 850;
}

.etleb-calendar-help {
  margin: 0;
  padding: 10px 18px 13px;
  border-top: 1px solid var(--etleb-line);
  background: #f8fafc;
}

.etleb-calendar-empty {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 46px;
  text-align: left;
}

.etleb-calendar-empty h2 {
  margin: 0;
  color: var(--etleb-navy);
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  white-space: normal;
  overflow-wrap: anywhere;
}

.etleb-calendar-empty p {
  max-width: 520px;
  margin: 9px 0 20px;
  color: var(--etleb-muted);
  font-size: 11px;
  line-height: 1.65;
  white-space: normal;
  overflow-wrap: anywhere;
}

.etleb-calendar-empty > div:last-child {
  min-width: 0;
}

.etleb-calendar-empty-icon {
  width: 88px;
  height: 82px;
  display: grid;
  flex: 0 0 88px;
  overflow: hidden;
  border: 1px solid #ccd6e0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(6, 24, 50, .08);
}

.etleb-calendar-empty-icon span {
  height: 22px;
  background: var(--etleb-navy);
}

.etleb-calendar-empty-icon b {
  place-self: center;
  color: var(--etleb-orange-dark);
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

@media (max-width: 980px) {
  .etleb-calendar-empty {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 34px 28px;
  }

  .etleb-staff-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .etleb-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .etleb-quick-grid {
    grid-template-columns: 1fr;
  }

  .etleb-calendar-heading {
    align-items: stretch;
  }

  .etleb-calendar-note {
    align-items: flex-start;
    padding: 15px 16px;
  }

  .etleb-calendar-note time {
    display: none;
  }

  .etleb-agenda-toolbar {
    padding: 21px 18px 13px;
  }

  .etleb-agenda-toolbar > p {
    display: none;
  }

  .etleb-agenda-list {
    padding: 0 18px 20px;
  }

  .etleb-agenda-day {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .etleb-agenda-day > header {
    grid-template-columns: 38px auto 1fr;
  }

  .etleb-agenda-day > header b {
    font-size: 28px;
  }

  .etleb-agenda-day > header em {
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-self: end;
    margin: 0;
  }

  .etleb-agenda-event {
    padding: 13px 13px 13px 10px;
  }

  .etleb-agenda-event strong {
    font-size: 12px;
  }

  .etleb-agenda-event p {
    font-size: 9px;
  }

  .etleb-calendar-empty {
    padding: 30px 22px;
  }

  .etleb-pay-profile {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .etleb-pay-profile p {
    text-align: left;
  }

  .etleb-resource-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .etleb-resource-intro > p {
    padding: 15px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }

  .etleb-resource-directory-head {
    align-items: stretch;
    flex-direction: column;
  }

  .etleb-resource-search {
    width: 100%;
  }

  .etleb-resource-page .etleb-resource-grid,
  .etleb-staff-tool-grid {
    grid-template-columns: 1fr;
  }

  .etleb-resource-page .etleb-resource-grid > .etleb-resource-card {
    min-height: 175px;
    padding: 17px;
  }

  .etleb-library-hero {
    min-height: 250px;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 24px;
  }

  .etleb-library-mark {
    width: 80px;
    height: 80px;
    align-self: flex-end;
    flex-basis: 80px;
  }

  .etleb-library-mark span {
    font-size: 29px;
  }

  .etleb-library-mark small {
    margin-top: 31px;
  }

  .etleb-library-control {
    align-items: flex-start;
  }

  .etleb-library-directory {
    padding: 20px;
  }

  .etleb-library-grid {
    grid-template-columns: 1fr;
  }

  .etleb-library-card {
    min-height: 210px;
  }
}
.etleb-employment-summary{margin:0 0 16px;padding:22px;border:1px solid var(--etleb-line);border-radius:10px;background:#fff;box-shadow:0 5px 18px rgba(6,24,50,.035)}.etleb-employment-summary-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:18px}.etleb-employment-summary-head .etleb-eyebrow{margin-bottom:5px}.etleb-employment-summary-head h2{margin:0;color:var(--etleb-navy);font-family:Georgia,serif;font-size:22px;font-weight:400}.etleb-employment-summary-head>a{display:inline-flex;align-items:center;gap:6px;color:var(--etleb-orange-dark)!important;font-size:10px;font-weight:850;text-decoration:none!important}.etleb-employment-summary-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.etleb-employment-summary-grid>div{min-height:102px;display:flex;flex-direction:column;padding:15px;border:1px solid #e2e7ec;border-radius:8px;background:#fafbfc}.etleb-employment-summary-grid small{color:var(--etleb-muted);font-size:8px;font-weight:850;letter-spacing:.07em;text-transform:uppercase}.etleb-employment-summary-grid strong{margin:13px 0 5px;color:var(--etleb-navy);font-size:12px}.etleb-employment-summary-grid span{margin-top:auto;color:#66778a;font-size:9px;line-height:1.45}@media(max-width:980px){.etleb-employment-summary-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:760px){.etleb-employment-summary-head{align-items:flex-start;flex-direction:column}.etleb-employment-summary-grid{grid-template-columns:1fr}}

/* Self-service staff profiles. */
.etleb-sidebar-user { position: relative; color: #fff !important; text-decoration: none !important; border-radius: 7px; transition: background .15s ease, padding .15s ease; }
.etleb-sidebar-user:hover,
.etleb-sidebar-user:focus-visible,
.etleb-sidebar-user.active { margin-right: -6px; margin-left: -6px; padding-right: 6px; padding-left: 6px; background: rgba(255, 255, 255, .09); outline: 0; }
.etleb-sidebar-user > b { margin-left: auto; color: var(--etleb-orange); font-size: 20px; font-weight: 400; line-height: 1; }
.etleb-sidebar-avatar { overflow: hidden; }
.etleb-sidebar-avatar img { width: 100%; height: 100%; display: block; object-fit: cover; }
.etleb-profile-heading { align-items: center; }
.etleb-profile-shell { display: grid; grid-template-columns: minmax(230px, .42fr) minmax(0, 1fr); overflow: hidden; border: 1px solid var(--etleb-line); border-radius: 12px; background: #fff; box-shadow: 0 10px 30px rgba(6, 24, 50, .06); }
.etleb-profile-preview { display: flex; align-items: center; flex-direction: column; padding: 42px 30px; background: linear-gradient(150deg, var(--etleb-deep), var(--etleb-navy)); color: #fff; text-align: center; }
.etleb-profile-photo { width: 132px; height: 132px; display: grid; place-items: center; overflow: hidden; margin-bottom: 28px; border: 4px solid rgba(255, 255, 255, .16); border-radius: 50%; background: var(--etleb-orange); color: var(--etleb-deep); box-shadow: 0 14px 34px rgba(0, 0, 0, .2); }
.etleb-profile-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.etleb-profile-photo span { font-family: Georgia, serif; font-size: 45px; line-height: 1; }
.etleb-profile-preview .etleb-eyebrow { margin-bottom: 8px; color: #ffac55 !important; }
.etleb-profile-preview > strong { color: #fff; font-family: Georgia, serif; font-size: 25px; font-weight: 400; line-height: 1.15; }
.etleb-profile-preview > small { margin-top: 7px; color: #c4d0dc; font-size: 10px; font-weight: 800; }
.etleb-profile-preview > p:last-child { max-width: 260px; margin: auto 0 0; padding-top: 34px; color: #9fb0c2; font-size: 9px; line-height: 1.55; }
.etleb-profile-form-wrap { min-width: 0; padding: 38px 40px 40px; }
.etleb-profile-form-wrap .etleb-panel-heading { margin-bottom: 4px; padding-bottom: 20px; border-bottom: 1px solid #e8edf1; }
.etleb-profile-form-wrap .etleb-panel-heading p { max-width: 620px; line-height: 1.55; }
.etleb-profile-form { margin-top: 24px; }
.etleb-profile-form input[readonly] { background: #f4f6f8; color: #68788b; cursor: not-allowed; }
.etleb-profile-file { overflow: hidden; border: 1px dashed #cbd5df; border-radius: 8px; background: #fafbfc; }
.etleb-profile-file input { min-height: 50px; border: 0; border-radius: 0; background: transparent; }
.etleb-profile-file input::file-selector-button { height: 50px; margin: 0 14px 0 -12px; padding: 0 16px; border: 0; border-right: 1px solid #dbe2e8; background: #eef2f5; color: var(--etleb-navy); font-weight: 850; cursor: pointer; }
.etleb-profile-file > span { display: block; padding: 0 13px 11px; color: var(--etleb-muted); font-size: 8px; }
.etleb-profile-upload > small[role="alert"]:not(:empty) { color: #94342d; font-weight: 750; }
.etleb-profile-remove { display: flex; align-items: center; gap: 9px; color: #40536b; font-size: 10px; font-weight: 750; cursor: pointer; }
.etleb-profile-remove input { width: 16px; height: 16px; accent-color: var(--etleb-orange); }
.etleb-profile-actions { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 4px; padding-top: 19px; border-top: 1px solid #e8edf1; }
.etleb-profile-actions p { margin: 0; color: var(--etleb-muted); font-size: 9px; }
.etleb-profile-actions .etleb-button { min-width: 132px; border: 0; }
@media(max-width:900px){.etleb-profile-shell{grid-template-columns:1fr}.etleb-profile-preview{padding:30px}.etleb-profile-preview>p:last-child{margin-top:25px;padding-top:0}.etleb-profile-form-wrap{padding:30px}}
@media(max-width:760px){.etleb-profile-heading{align-items:stretch}.etleb-profile-photo{width:112px;height:112px}.etleb-profile-form-wrap{padding:24px 18px}.etleb-profile-actions{align-items:stretch;flex-direction:column}.etleb-profile-actions .etleb-button{width:100%}.etleb-profile-file input::file-selector-button{display:block;width:100%;margin:0 0 8px;border-right:0;border-bottom:1px solid #dbe2e8}.etleb-profile-file input{height:auto;padding:0}}

/* Anniversary PTO policy details. */
.etleb-balance-card > p { max-width: 420px; margin: 13px 0 0; color: #d5dee8; font-size: 9px; line-height: 1.55; }
