/* file: Z:\Apache24\hosts\whiteclaw\assets\css\app.css */
/* purpose: StaffConnect base styling + Bootstrap custom theme helpers */

/* =========================
   Brand tokens
   ========================= */
:root{
  --wc-bg: #0b1220;
  --wc-ink: #111827;
  --wc-muted: #6b7280;

  --wc-primary: #3b3aa4; /* deep indigo */
  --wc-primary-600: #2f2ea0;
  --wc-primary-700: #25248f;

  --wc-accent: #f2c94c;  /* warm yellow */

  --wc-hero-a: #f0c27b;  /* warm gradient start */
  --wc-hero-b: #ed2b09;  /* warm gradient end */

  --wc-card: #ffffff;
  --wc-card-border: rgba(17, 24, 39, 0.08);
  --wc-shadow: 0 12px 28px rgba(0,0,0,0.12);
  --wc-shadow-soft: 0 10px 22px rgba(0,0,0,0.10);
  --wc-radius: 18px;
}

/* =========================
   Base
   ========================= */
html,
body{
  height: 100%;
}

body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--wc-ink);
  background: #f6f7fb;
}

.container{
  max-width: 1180px;
}

a{
  text-decoration: none;
}

a:hover{
  text-decoration: none;
}

/* =========================
   Topbar / Brand
   ========================= */
.wc-topbar{
  position: relative;
  top: 0;
  z-index: 1030;
  background: #060d21;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 12px 32px rgba(0,0,0,0.24);
  overflow: visible;
}

.wc-topbar::before{
  content: "";
  position: absolute;
  top: 36px;
  right: -292px;
  width: 540px;
  height: 300px;
  border-radius: 50%;
  border: 30px solid rgba(244, 126, 45, 0.56);
  border-left-color: rgba(255,255,255,0.05);
  border-bottom-color: rgba(244, 126, 45, 0.18);
  transform: rotate(-28deg);
  pointer-events: none;
  z-index: 0;
}

.wc-topbar::after{
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 430px;
  height: 245px;
  border-radius: 50%;
  background: radial-gradient(circle at 78% 70%, rgba(255, 139, 50, 0.56), rgba(255, 139, 50, 0.20) 33%, rgba(255, 139, 50, 0) 68%);
  pointer-events: none;
  z-index: 0;
}

/* Keep actual nav content above the overlay */
.wc-topbar > .container{
  position: relative;
  z-index: 1;
  padding-top: 0 !important;
  padding-bottom: .75rem !important;
}

.wc-topbar-inner{
  gap: 1.25rem;
  flex-wrap: wrap;
  min-height: 170px;
  align-items: flex-start !important;
}

.wc-topbar-brand-wrap{
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 1 1 auto;
}

.wc-brand{
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
}

.wc-brand-logo{
  display: block;
  height: 138px;
  width: auto;
  max-width: min(74vw, 710px);
  object-fit: contain;
}

.wc-topbar-actions{
  position: relative;
  z-index: 2;
  flex: 0 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 100%;
  margin-left: auto;
  align-self: center;
}

.wc-topbar-account-label{
  display: inline-block;
  max-width: clamp(96px, 16vw, 180px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}

/* Dropdown must stay above the custom header */
.wc-topbar .dropdown{
  position: relative;
  z-index: 2100;
}

.wc-topbar .dropdown-menu{
  z-index: 2000;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.14);
  padding: .45rem;
  min-width: 220px;
}

.wc-topbar .dropdown-item{
  border-radius: 8px;
  font-weight: 600;
  padding: .6rem .8rem;
}

.wc-topbar .dropdown-item:hover,
.wc-topbar .dropdown-item:focus{
  background: rgba(79, 70, 229, 0.08);
  color: #111827;
}

/* =========================
   Topbar / Action Buttons
   ========================= */
.wc-topbar .btn-wc-outline,
.wc-topbar .btn-wc-outline-nav{
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .375rem .9rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.42);
  background: rgba(2, 11, 25, 0.48);
  color: #ffffff;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition:
    background .18s ease-in-out,
    border-color .18s ease-in-out,
    color .18s ease-in-out,
    box-shadow .18s ease-in-out,
    transform .18s ease-in-out;
}

.wc-topbar .btn-wc-outline:hover,
.wc-topbar .btn-wc-outline:focus,
.wc-topbar .btn-wc-outline-nav:hover,
.wc-topbar .btn-wc-outline-nav:focus{
  background: rgba(244, 126, 45, 0.92);
  border-color: rgba(255, 169, 88, 0.95);
  color: #061225;
  box-shadow: 0 6px 18px rgba(244, 126, 45, 0.20);
  transform: translateY(-1px);
}

.wc-topbar .btn-wc-outline-nav.is-active,
.wc-topbar .btn-wc-outline-nav[aria-current="page"]{
  background: rgba(255,255,255,0.84);
  border-color: rgba(255,255,255,0.98);
  color: #111827;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.wc-topbar .btn-wc-account,
.wc-topbar .dropdown > .btn.btn-light{
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .375rem .9rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.96);
  background: #ffffff;
  color: #1f2233;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  transition:
    background .18s ease-in-out,
    border-color .18s ease-in-out,
    color .18s ease-in-out,
    box-shadow .18s ease-in-out,
    transform .18s ease-in-out;
}

.wc-topbar .btn-wc-account:hover,
.wc-topbar .btn-wc-account:focus,
.wc-topbar .dropdown > .btn.btn-light:hover,
.wc-topbar .dropdown > .btn.btn-light:focus{
  background: #f8f8fa;
  border-color: rgba(255,255,255,1);
  color: #111827;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.wc-topbar .btn-wc-account.dropdown-toggle::after,
.wc-topbar .dropdown > .btn.btn-light.dropdown-toggle::after{
  margin-left: .35rem;
}

.wc-topbar .btn-wc-primary{
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .375rem .9rem;
  border-radius: 8px;
  background: #f47e2d;
  border: 1px solid #ffad64;
  color: #061225;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.wc-topbar .btn-wc-primary:hover,
.wc-topbar .btn-wc-primary:focus{
  background: #ff9a4d;
  border-color: #ffc08a;
  color: #061225;
  box-shadow: 0 6px 18px rgba(244, 126, 45, 0.22);
  transform: translateY(-1px);
}

/* =========================
   Responsive topbar
   ========================= */
@media (max-width: 991.98px){
  .wc-brand-logo{
    height: 112px;
    max-width: min(70vw, 576px);
  }
}

@media (max-width: 767.98px){
  .wc-topbar > .container{
    flex-wrap: wrap;
    row-gap: .85rem;
  }

  .wc-topbar-inner{
    min-height: 154px;
  }

  .wc-topbar-brand-wrap{
    width: 100%;
    justify-content: space-between;
    gap: .75rem;
  }

  .wc-topbar-actions{
    width: 100%;
    justify-content: flex-end;
  }

  .wc-brand-logo{
    height: 82px;
    max-width: min(88vw, 422px);
  }
}

@media (max-width: 575.98px){
  .wc-topbar{
    padding-top: .15rem;
    padding-bottom: .15rem;
  }

  .wc-topbar-brand-wrap{
    gap: .5rem;
  }

  .wc-brand-logo{
    height: 64px;
    max-width: min(86vw, 329px);
  }

  .wc-topbar .btn-wc-outline,
  .wc-topbar .btn-wc-primary,
  .wc-topbar .btn-wc-outline-nav,
  .wc-topbar .dropdown > .btn.btn-light{
    min-height: 34px;
    padding: .32rem .72rem;
    font-size: .88rem;
  }
}
/* =========================
   Hero
   ========================= */
.wc-hero{
  background:
    radial-gradient(circle at 88% 18%, rgba(244, 126, 45, 0.16), rgba(244, 126, 45, 0) 36%),
    linear-gradient(120deg, #061225 0%, #0b2445 58%, #102b45 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.wc-hero::after{
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.08), rgba(255,255,255,0) 55%);
  pointer-events: none;
}

.wc-hero-title{
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #fff;
}

.wc-hero-copy,
.wc-hero-lead{
  color: rgba(255,255,255,0.92);
}

/* Hero “card” block */
.wc-hero-card{
  background: rgba(255,255,255,0.92);
  color: var(--wc-ink);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--wc-radius);
  box-shadow: var(--wc-shadow-soft);
  position: relative;
  z-index: 1;
}

/* =========================
   Hero content panel (left side)
   ========================= */
.wc-hero-panel{
  background: rgba(255,255,255,0.92);
  color: var(--wc-ink);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--wc-radius);
  box-shadow: var(--wc-shadow-soft);
  position: relative;
  z-index: 1;
}

.wc-hero-panel .wc-hero-title,
.wc-hero-panel .wc-hero-copy,
.wc-hero-panel .wc-hero-lead{
  color: var(--wc-ink) !important;
}

.wc-hero-panel .text-secondary{
  color: var(--wc-muted) !important;
}
/* Stronger readable alerts on the hero gradient */
.wc-alert{
  margin-top: 12px;
  margin-bottom: 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

/* Make success text darker for readability */
.alert-success.wc-alert{
  color: #0f3d1f;              /* dark green text */
  background: rgba(235, 255, 241, 0.98);
  border: 1px solid rgba(25, 135, 84, 0.35);
}

/* Make error text strong too */
.alert-danger.wc-alert{
  color: #5a0b12;
  background: rgba(255, 235, 238, 0.98);
  border: 1px solid rgba(220, 53, 69, 0.35);
}
.wc-hero::after{
  z-index: 0;
}

.wc-hero > .container{
  position: relative;
  z-index: 1;
}
/* =========================
   Cards
   ========================= */
.wc-card{
  background: var(--wc-card);
  border: 1px solid var(--wc-card-border);
  border-radius: var(--wc-radius);
  box-shadow: var(--wc-shadow-soft);
}

/* =========================
   Buttons
   ========================= */
.btn-wc-primary{
  background: var(--wc-primary);
  border-color: var(--wc-primary);
  color: #fff;
  font-weight: 800;
}

.btn-wc-primary:hover,
.btn-wc-primary:focus{
  background: var(--wc-primary-600);
  border-color: var(--wc-primary-600);
  color: #fff;
}

.btn-wc-primary:active{
  background: var(--wc-primary-700);
  border-color: var(--wc-primary-700);
  color: #fff;
}

.btn-wc-outline{
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 800;
}

.btn-wc-outline-nav{
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 800;
}

.btn-wc-outline:hover,
.btn-wc-outline:focus{
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
}



/* Outline button for non-hero contexts (dark text) */
.btn-wc-outline-nav.btn-sm,
.btn-wc-outline-nav.btn-lg,
.btn-wc-outline-nav{
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  background: rgba(59, 58, 164, 0.06);
}

.btn-wc-outline-nav:hover,
.btn-wc-outline-nav:focus{
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
}

/* Outline button for non-hero contexts (dark text) */
.btn-wc-outline.btn-sm,
.btn-wc-outline.btn-lg,
.btn-wc-outline{
  border-color: rgba(59, 58, 164, 0.35);
  color: var(--wc-primary);
  background: rgba(59, 58, 164, 0.06);
}

/* Outline button for non-hero contexts (dark text) */
.btn-wc-outline.btn-sm,
.btn-wc-outline.btn-lg,
.btn-wc-outline{
  background: rgba(59, 58, 164, 0.06);
}

.btn-wc-outline:hover,
.btn-wc-outline:focus{
  background: rgba(59, 58, 164, 0.12);
  border-color: rgba(59, 58, 164, 0.55);
  color: var(--wc-primary);
}

.wc-topbar .btn.btn-wc-outline,
.wc-topbar .btn.btn-wc-outline.btn-sm,
.wc-topbar .btn.btn-wc-outline.btn-lg{
  border-color: rgba(255,255,255,0.42);
  background: rgba(2, 11, 25, 0.48);
  color: #ffffff;
}

.wc-topbar .btn.btn-wc-outline:hover,
.wc-topbar .btn.btn-wc-outline:focus,
.wc-topbar .btn.btn-wc-outline.btn-sm:hover,
.wc-topbar .btn.btn-wc-outline.btn-sm:focus{
  background: rgba(244, 126, 45, 0.92);
  border-color: rgba(255, 169, 88, 0.95);
  color: #061225;
}

/* Make standard light buttons a touch nicer */
.btn-light{
  border: 1px solid rgba(17, 24, 39, 0.10);
  font-weight: 700;
}

/* =========================
   Forms
   ========================= */
.form-control,
.form-select{
  border-radius: 14px;
}

.form-control:focus,
.form-select:focus{
  border-color: rgba(59, 58, 164, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(59, 58, 164, 0.14);
}

.form-control-lg,
.form-select-lg{
  border-radius: 16px;
}

/* =========================
   Tables
   ========================= */
.table thead th{
  font-size: 0.9rem;
  color: #374151;
}

.table td, .table th{
  vertical-align: middle;
}

.table-responsive{
  border-radius: 14px;
}

/* DataTables (Bootstrap 5) small tweaks */
.dataTables_wrapper .dataTables_filter input{
  border-radius: 12px;
}

.dataTables_wrapper .dataTables_length select{
  border-radius: 12px;
}

/* Make pagination look a bit more “WC” */
.page-link{
  border-radius: 12px !important;
}
#wc-login-msg {
  background: rgba(232, 102, 193, 0.18);
  color: #c50a0a;
  border-left: 4px solid #f0a43a !important;
  font-size: 0.98rem;
  border-radius: 12px;
}

#wc-login-error {
  background: #dc3545;
  color: #ffffff;
  border-left: 4px solid #dc3545 !important;
  font-size: 0.98rem;
  border-radius: 12px;
}
/* =========================
   Utilities
   ========================= */
.text-secondary{
  color: var(--wc-muted) !important;
}

/* details/summary nice defaults */
details summary{
  cursor: pointer;
}

/* =========================
   Help Page
   ========================= */

.wc-help-hero .wc-hero-panel,
.wc-help-hero .wc-hero-card{
  height: 100%;
}

.wc-help-hero .wc-hero-title{
  line-height: 1.1;
}

.wc-help-hero .wc-hero-lead{
  font-size: 1.4rem;
  line-height: 1.65;
}

.wc-help-main{
  position: relative;
}

.wc-help-wrap{
  max-width: 980px;
}

/* Section headings */
.wc-help-section + .wc-help-section{
  margin-top: .5rem;
}

.wc-help-section-head{
  display: block;
}

.wc-help-section-title{
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1b1f33;
  margin: 0;
}

/* Outer card used for an entire help section */
.wc-help-group-card{
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  background: #fff;
}

/* Legacy/single cards, still safe if used elsewhere */
.wc-help-card{
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  background: #fff;
}

/* Each snippet inside a grouped help card */
.wc-help-item{
  padding: .25rem 0;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #2b3147;
}

.wc-help-divider{
  border: 0;
  border-top: 1px solid rgba(31, 42, 55, 0.10);
  margin: 1.5rem 0;
}

/* Typography inside help content */
.wc-help-item h2,
.wc-help-item h3,
.wc-help-item .h5,
.wc-help-card h2,
.wc-help-card h3,
.wc-help-card .h5{
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #171c2f;
  margin-bottom: .65rem;
}

.wc-help-item p,
.wc-help-card p{
  font-size: 1.5rem;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: .75rem;
}

.wc-help-item p:last-child,
.wc-help-card p:last-child{
  margin-bottom: 0;
}

.wc-help-item ul,
.wc-help-card ul{
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.wc-help-item li,
.wc-help-card li{
  font-size: 1.45rem;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: .35rem;
}

.wc-help-item li:last-child,
.wc-help-card li:last-child{
  margin-bottom: 0;
}

.wc-help-item .fs-4,
.wc-help-card .fs-4{
  font-size: 1.35rem !important;
}

.wc-help-item .text-secondary,
.wc-help-card .text-secondary{
  color: #4b5563 !important;
}

/* Keep icon + text blocks aligned nicely */
.wc-help-item .d-flex.align-items-start,
.wc-help-card .d-flex.align-items-start{
  align-items: flex-start !important;
}

/* Optional softer max line length for descriptions */
.wc-help-section .text-secondary{
  max-width: 70ch;
}
/* =========================
   Help Topic Content
   ========================= */

.wc-help-item{
  padding: .25rem 0;
  color: #2b3147;
}

.wc-help-topic{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wc-help-topic-head{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.wc-help-topic-icon{
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  font-size: 1.2rem;
}

.wc-help-topic h2,
.wc-help-topic h3{
  margin: 0;
  font-size: 1.45rem;
  color: #171c2f;
}

.wc-help-topic h2{
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .35rem;
}

.wc-help-topic-head p{
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.7;
  color: #4b5563;
}

.wc-help-points{
  display: grid;
  gap: .9rem;
}

.wc-help-point{
  padding: 1rem 1.1rem;
  border: 1px solid rgba(31, 42, 55, 0.08);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.8);
}

.wc-help-point h3{
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.wc-help-point p{
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.75;
  color: #4b5563;
}

.wc-help-note{
  padding: .9rem 1rem;
  border-radius: 14px;
  background: rgba(79, 70, 229, 0.07);
  border: 1px solid rgba(79, 70, 229, 0.10);
  color: #374151;
  font-size: 1.58rem;
  line-height: 1.7;
}

.wc-help-note strong{
  color: #171c2f;
}

.wc-help-divider{
  border: 0;
  border-top: 1px solid rgba(31, 42, 55, 0.10);
  margin: 1.5rem 0;
}

@media (max-width: 575.98px){
  .wc-help-topic-head{
    gap: .8rem;
  }

  .wc-help-topic-icon{
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    font-size: 1.05rem;
  }

  .wc-help-topic h2{
    font-size: 1.15rem;
  }

  .wc-help-topic-head p,
  .wc-help-point p,
  .wc-help-note{
    font-size: .98rem;
  }
}
/* Tablet / small desktop */
@media (max-width: 991.98px){
  .wc-help-wrap{
    max-width: 100%;
  }

  .wc-help-section-title{
    font-size: 1.35rem;
  }
}

/* Mobile */
@media (max-width: 575.98px){
  .wc-help-hero .wc-hero-panel,
  .wc-help-hero .wc-hero-card,
  .wc-help-card,
  .wc-help-group-card{
    border-radius: 18px;
  }

  .wc-help-hero .btn.btn-lg{
    width: 100%;
    justify-content: center;
  }

  .wc-help-group-card,
  .wc-help-card{
    padding: 1.1rem !important;
  }

  .wc-help-section-title{
    font-size: 1.2rem;
  }

  .wc-help-item h2,
  .wc-help-item h3,
  .wc-help-item .h5,
  .wc-help-card h2,
  .wc-help-card h3,
  .wc-help-card .h5{
    font-size: 1.15rem;
  }

  .wc-help-item p,
  .wc-help-item li,
  .wc-help-card p,
  .wc-help-card li{
    font-size: .98rem;
  }

  .wc-help-divider{
    margin: 1.15rem 0;
  }
}

/* =========================
   Help Audience Tabs
   ========================= */

.wc-help-tabs-card{
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.wc-help-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.wc-help-tab{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .6rem 1rem;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.07);
  border: 1px solid rgba(79, 70, 229, 0.12);
  color: #312e81;
  font-weight: 700;
  text-decoration: none;
  transition:
    background .18s ease-in-out,
    border-color .18s ease-in-out,
    color .18s ease-in-out,
    transform .18s ease-in-out,
    box-shadow .18s ease-in-out;
}

.wc-help-tab:hover,
.wc-help-tab:focus{
  background: rgba(79, 70, 229, 0.11);
  border-color: rgba(79, 70, 229, 0.18);
  color: #1e1b4b;
  text-decoration: none;
  transform: translateY(-1px);
}

.wc-help-tab.is-active,
.wc-help-tab[aria-current="page"]{
  background: var(--wc-primary);
  border-color: var(--wc-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

@media (max-width: 575.98px){
  .wc-help-tabs{
    gap: .55rem;
  }

  .wc-help-tab{
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   Help Accordion Topics
   ========================= */

.wc-help-accordion{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wc-help-accordion-nav{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.wc-help-accordion-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 42, 55, 0.10);
  background: #fff;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition:
    background .18s ease-in-out,
    border-color .18s ease-in-out,
    color .18s ease-in-out,
    transform .18s ease-in-out,
    box-shadow .18s ease-in-out;
}

.wc-help-accordion-btn:hover,
.wc-help-accordion-btn:focus{
  background: rgba(79, 70, 229, 0.06);
  border-color: rgba(79, 70, 229, 0.16);
  color: #1e1b4b;
  transform: translateY(-1px);
}

.wc-help-accordion-btn.is-active,
.wc-help-accordion-btn[aria-expanded="true"]{
  background: var(--wc-primary);
  border-color: var(--wc-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.wc-help-accordion-panels{
  display: block;
}

.wc-help-accordion-panel{
  margin-top: 0;
}

@media (max-width: 575.98px){
  .wc-help-accordion-nav{
    gap: .55rem;
  }

  .wc-help-accordion-btn{
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   Mobile adjustments
   ========================= */
@media (max-width: 575.98px){
  /* drop heavy shadows on mobile */
  .wc-card,
  .wc-hero-card{
    box-shadow: none;
  }
  .wc-hero::before{ display:none; }
  .wc-hero .container{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .wc-hero-title{
    font-size: 1.8rem;
  }
}

@media (min-width: 768px){
  .wc-topbar-account-label{
    max-width: clamp(96px, 14vw, 170px);
  }
}

@media (min-width: 1200px){
  .wc-topbar-inner{
    flex-wrap: nowrap;
  }

  .wc-topbar-account-label{
    max-width: clamp(110px, 12vw, 190px);
  }
}
.wc-message-layout{
  display:grid;
  grid-template-columns:minmax(300px, 360px) minmax(0, 1fr);
  gap:1.5rem;
  align-items:start;
}
.wc-message-panel--groups{
  order:1;
}
.wc-message-panel--inbox{
  order:2;
}
.wc-message-panel{
  padding:1.25rem;
}
.wc-message-panel-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:1rem;
  margin-bottom:1rem;
}
.wc-message-panel-title{
  font-size:1.05rem;
  font-weight:700;
}
.wc-message-panel-body{
  min-width:0;
}
.wc-inbox-list{
  display:flex;
  flex-direction:column;
  gap:.5rem;
}
.wc-inbox-list-item{
  display:block;
  padding:.85rem .9rem;
  border-bottom:1px solid rgba(20,39,59,.08);
  color:inherit;
  transition:background-color .15s ease, color .15s ease;
}
.wc-inbox-list-item:hover{
  background:rgba(20,39,59,.04);
}
.wc-inbox-list-item.is-active{
  border-bottom-color:rgba(13,110,253,.22);
  background:rgba(13,110,253,.08);
}
.wc-inbox-list-item-row{
  display:flex;
  justify-content:space-between;
  gap:.75rem;
}
.wc-inbox-list-subject{
  font-weight:700;
  color:#14273b;
}
.wc-inbox-list-topmeta{
  display:flex;
  justify-content:flex-end;
}
.wc-inbox-list-topmeta-side{
  flex:0 0 auto;
  min-width:max-content;
}
.wc-mailbox-tree{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.wc-mailbox-tree-node{
  padding:.9rem;
  border:1px solid rgba(20,39,59,.08);
  border-radius:1rem;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.96));
}
.wc-mailbox-tree-heading{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-weight:700;
  color:#14273b;
  margin-bottom:.75rem;
}
.wc-mailbox-tree-subheading{
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#6c7a89;
  margin:.75rem 0 .4rem;
}
.wc-mailbox-tree-site{
  margin-top:1rem;
  padding-top:.35rem;
  border-top:1px solid rgba(20,39,59,.06);
}
.wc-mailbox-tree-site:first-of-type{
  margin-top:.85rem;
}
.wc-mailbox-tree-action + .wc-mailbox-tree-action{
  margin-top:.35rem;
}
.wc-mailbox-tree-accordion{
  margin-top:.75rem;
}
.wc-mailbox-tree-accordion-header{
  display:flex;
  align-items:stretch;
  gap:.45rem;
}
.wc-mailbox-tree-accordion-toggle{
  flex:1 1 auto;
}
.wc-mailbox-tree-chevron{
  display:inline-block;
  transition:transform .18s ease;
}
.wc-mailbox-tree-accordion.is-open .wc-mailbox-tree-chevron{
  transform:rotate(90deg);
}
.wc-mailbox-tree-accordion-body{
  margin-top:.45rem;
  padding-left:.6rem;
}
.wc-mailbox-tree-icon-button{
  flex:0 0 auto;
  width:2.9rem;
  border:0;
  border-radius:.85rem;
  background:#f6f8fb;
  color:#0b4db3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.wc-mailbox-tree-icon-button:hover{
  background:#dceafe;
}
.wc-mailbox-tree-button{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:.75rem;
  border:0;
  background:#eef3f8;
  color:#14273b;
  border-radius:.85rem;
  padding:.7rem .85rem;
  text-align:left;
  font-weight:600;
}
.wc-mailbox-tree-button.is-active{
  background:#dceafe;
  color:#0b4db3;
}
.wc-mailbox-tree-leaf{
  background:#f6f8fb;
}
.wc-message-compose{
  border:1px solid rgba(20,39,59,.08);
  border-radius:1.15rem;
  background:#fff;
  overflow:hidden;
}
.wc-message-compose .wc-message-panel-header{
  margin-bottom:0;
  padding:1rem 1.2rem;
  border-bottom:1px solid rgba(20,39,59,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,248,251,.98));
}
.wc-message-compose .wc-message-panel-body{
  padding:1rem 1.2rem 1.2rem;
}
.wc-message-compose-form{
  padding:1rem;
  border:1px solid rgba(20,39,59,.08);
  border-radius:1rem;
  background:#fbfcfe;
}
.wc-message-compose .form-label{
  font-weight:600;
  color:#14273b;
}
.wc-message-compose .form-control,
.wc-message-compose .form-select{
  border:1px solid rgba(20,39,59,.14);
  border-radius:.85rem;
  padding:.75rem .9rem;
  background:#fff;
}
.wc-message-compose .form-text{
  margin-top:.45rem;
}
.wc-message-sidebar-footer{
  margin-top:1.25rem;
  padding-top:1.25rem;
  border-top:1px solid rgba(20,39,59,.08);
}
.wc-thread-stack{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.wc-thread-card{
  border:1px solid rgba(20,39,59,.08);
  border-radius:1.15rem;
  overflow:hidden;
  background:#fff;
}
.wc-thread-card.is-active{
  border-color:#0d6efd;
  box-shadow:0 12px 32px rgba(20,39,59,.08);
}
.wc-thread-card-header{
  display:block;
  padding:1rem 1.1rem;
  color:inherit;
  text-decoration:none;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,248,251,.98));
}
.wc-thread-card-title-row{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:flex-start;
}
.wc-thread-card-header-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  grid-template-areas:
    ". side"
    "title side";
  column-gap:1rem;
  row-gap:.35rem;
  align-items:start;
}
.wc-thread-card-header-grid--inbox{
  margin-bottom:.1rem;
}
.wc-thread-card-header-side{
  grid-area:side;
  align-self:start;
}
.wc-thread-card-title-block{
  grid-area:title;
  min-width:0;
  flex:1 1 auto;
}
.wc-thread-card-meta{
  flex:0 0 auto;
  min-width:max-content;
}
.wc-thread-card-title{
  font-size:1.05rem;
  font-weight:700;
  color:#14273b;
}
.wc-thread-card-preview{
  margin-top:.65rem;
  color:#576574;
}
.wc-message-thread-label{
  font-size:.76rem;
  font-weight:700;
  color:#64748b;
  line-height:1.2;
}
.wc-inbox-list-updated{
  flex:0 0 auto;
  text-align:right;
  min-width:max-content;
}
@media (max-width: 575.98px){
  .wc-thread-card-header-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "side"
      "title";
  }

  .wc-thread-card-header-side{
    text-align:left !important;
  }

  .wc-inbox-list-updated{
    text-align:left;
    min-width:0;
  }

  .wc-inbox-list-topmeta{
    justify-content:flex-start;
  }
}
.wc-thread-card-shift{
  text-align:left;
}
.wc-thread-card-body{
  padding:1.1rem;
  border-top:1px solid rgba(20,39,59,.08);
}
.wc-thread-message-list{
  display:flex;
  flex-direction:column;
  gap:.85rem;
}
.wc-thread-message{
  border:1px solid rgba(20,39,59,.08);
  border-radius:1rem;
  padding:.9rem 1rem;
  background:#fff;
}
.wc-thread-message.is-own{
  border-color:rgba(13,110,253,.28);
  background:#f3f8ff;
}
.wc-thread-message-text{
  white-space:pre-wrap;
}
.wc-booked-staff-col{
  min-width:18rem;
}
.wc-booked-staff-name{
  line-height:1.3;
  overflow-wrap:anywhere;
}
.wc-booked-staff-meta{
  font-size:.84rem;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.wc-booking-warning{
  border-radius:1rem;
}
.wc-booking-warning a{
  margin-left:.35rem;
}
.wc-booking-warning--inline{
  padding:.55rem .7rem;
  border:1px solid rgba(220,53,69,.18);
  border-radius:.85rem;
  background:rgba(220,53,69,.06);
}
.wc-booking-warning-form{
  min-width:0;
}
.wc-booking-warning-form .btn{
  width:100%;
}
.wc-shift-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.45rem;
}
.wc-shift-meta.is-stacked{
  align-items:flex-start;
}
.wc-shift-meta-text{
  color:#334155;
  font-weight:600;
}
.wc-shift-meta-date{
  color:#0f172a;
}
.wc-shift-meta-time{
  color:#475569;
}
.wc-shift-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:1.7rem;
  padding:.18rem .58rem;
  border:1px solid transparent;
  border-radius:999px;
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.03em;
  line-height:1;
}
.wc-shift-chip--weekday{
  min-width:3.2rem;
}
.wc-shift-chip--mon{
  background:#e9f2ff;
  border-color:#b8d2ff;
  color:#0d47a1;
}
.wc-shift-chip--tue{
  background:#e8f8f1;
  border-color:#b8e5cf;
  color:#166534;
}
.wc-shift-chip--wed{
  background:#fff5df;
  border-color:#f4d79a;
  color:#92400e;
}
.wc-shift-chip--thu{
  background:#f3ecff;
  border-color:#d8c2ff;
  color:#6d28d9;
}
.wc-shift-chip--fri{
  background:#ffe9ef;
  border-color:#f6bfd0;
  color:#be185d;
}
.wc-shift-chip--sat{
  background:#fff0e7;
  border-color:#f7c8ad;
  color:#c2410c;
}
.wc-shift-chip--sun{
  background:#ffe9e9;
  border-color:#f5bcbc;
  color:#b91c1c;
}
.wc-shift-chip--unknown{
  background:#f1f5f9;
  border-color:#cbd5e1;
  color:#475569;
}
.wc-shift-chip--type{
  min-width:2.7rem;
}
.wc-shift-chip--es{
  background:#ecfdf5;
  border-color:#a7f3d0;
  color:#047857;
}
.wc-shift-chip--bs{
  background:#eff6ff;
  border-color:#bfdbfe;
  color:#1d4ed8;
}
.wc-shift-chip--ns{
  background:#111111;
  border-color:#111111;
  color:#ffffff;
}
.wc-shift-chip--custom{
  background:#f8fafc;
  border-color:#cbd5e1;
  color:#475569;
}
.wc-shift-meta + .small.text-secondary{
  margin-top:.35rem;
}
.wc-interest-mobile{
  display:block !important;
}
.wc-interest-desktop{
  display:none !important;
}
@media (min-width: 768px){
  .wc-interest-mobile{
    display:none !important;
  }

  .wc-interest-desktop{
    display:block !important;
  }
}
@media (max-width: 991.98px){
  .wc-message-layout{
    grid-template-columns:1fr;
  }
}
