﻿@charset "UTF-8";
:root {
  --black: #282d27;
  --black--light: #79786f;
  --grey: #dde5ed;
  --grey--light: #eef3f9;
  --grey--dark: #cecfcf;
  --white: #fdf9f6;
  --white--dark: #fff2e9;
  --vanilla: #f2e9db;
  --vanilla--light: #f5f0e7;
  --vanilla--dark: #e1b87f;
  --brown: #8d3f2b;
  --brown--light: #a1614e;
  --red: #e2665c;
  --red--light: #f7ced7;
  --orange: #ea7600;
  --yellow: #fbd872;
  --green: #71b790;
  --green--light: #8ccca8;
  --brand: #e4002b;
  --pistachio: #d6cf8d;
  --icon-black: invert(13%) sepia(7%) saturate(866%) hue-rotate(64deg) brightness(97%) contrast(89%);
  --icon-black--light: invert(52%) sepia(10%) saturate(294%) hue-rotate(16deg) brightness(88%) contrast(83%);
  --icon-grey: invert(94%) sepia(11%) saturate(205%) hue-rotate(177deg) brightness(95%) contrast(95%);
  --icon-grey--light: invert(100%) sepia(52%) saturate(1014%) hue-rotate(177deg) brightness(102%) contrast(95%);
  --icon-grey--dark: invert(96%) sepia(5%) saturate(25%) hue-rotate(131deg) brightness(86%) contrast(91%);
  --icon-white: invert(97%) sepia(2%) saturate(892%) hue-rotate(326deg) brightness(102%) contrast(98%);
  --icon-white--dark: invert(96%) sepia(58%) saturate(727%) hue-rotate(293deg) brightness(110%) contrast(102%);
  --icon-vanilla: invert(92%) sepia(21%) saturate(359%) hue-rotate(316deg) brightness(105%) contrast(90%);
  --icon-vanilla--light: invert(100%) sepia(97%) saturate(273%) hue-rotate(301deg) brightness(103%) contrast(92%);
  --icon-vanilla--dark: invert(76%) sepia(45%) saturate(333%) hue-rotate(353deg) brightness(93%) contrast(89%);
  --icon-brown: invert(29%) sepia(13%) saturate(2702%) hue-rotate(325deg) brightness(97%) contrast(92%);
  --icon-brown--light: invert(44%) sepia(13%) saturate(1564%) hue-rotate(327deg) brightness(93%) contrast(90%);
  --icon-red: invert(52%) sepia(43%) saturate(735%) hue-rotate(316deg) brightness(90%) contrast(98%);
  --icon-red--light: invert(88%) sepia(22%) saturate(560%) hue-rotate(297deg) brightness(101%) contrast(94%);
  --icon-orange: invert(61%) sepia(70%) saturate(4050%) hue-rotate(2deg) brightness(93%) contrast(103%);
  --icon-yellow: invert(77%) sepia(77%) saturate(301%) hue-rotate(348deg) brightness(102%) contrast(97%);
  --icon-green: invert(77%) sepia(16%) saturate(847%) hue-rotate(94deg) brightness(86%) contrast(83%);
  --icon-green--light: invert(86%) sepia(7%) saturate(1489%) hue-rotate(93deg) brightness(88%) contrast(89%);
  --icon-brand: invert(31%) sepia(96%) saturate(5834%) hue-rotate(337deg) brightness(82%) contrast(125%);
  --grey--tl: rgba(150, 150, 150, 0.2);
  --white--tl: rgba(255, 255, 255, 0.2);
  --black--tl: rgba(0, 0, 0, 0.2);
  --red--tl: rgba(226, 102, 92, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.temp-action {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  width: 100%;
  height: 40px;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}

.content-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .content-container {
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .content-container {
    max-width: 100%;
  }
}
.content-container .content-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  background: var(--grey--light);
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

.in-dev {
  opacity: 0.75;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: var(--black--light);
}
.in-dev img {
  width: 50px;
  filter: var(--icon-black--light);
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.coming-soon {
  width: 100%;
  height: 50vh;
  background: var(--yellow);
  padding: 1rem;
  display: grid;
  place-items: center;
  font-size: 5em;
  font-weight: 600;
  border-radius: 14px;
  opacity: 0.5;
  cursor: not-allowed;
  text-align: center;
}

.pickup-last-refreshed {
  font-size: 0.75rem;
  color: var(--brown);
  opacity: 0.55;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: 100%;
}

img {
  border-style: none;
}

svg {
  overflow: hidden;
  fill: currentColor;
}

input,
button,
textarea,
select {
  font: inherit;
  margin: 0;
  outline: none;
  border: none;
  background: transparent;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=url],
input[type=tel],
input[type=number],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  appearance: button;
  font: inherit;
}

textarea {
  resize: vertical;
  overflow: auto;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid #e9ecef;
  margin: 1rem 0;
}

pre,
code,
kbd,
samp {
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: 1em;
}

pre {
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

details {
  display: block;
}

summary {
  display: list-item;
  cursor: pointer;
}

[hidden],
template {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
body {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.15;
  color: var(--black);
  background-color: var(--vanilla);
}

.page-heading {
  font-size: 1.5rem;
  padding: 1rem;
  background: var(--grey--light);
  color: var(--black);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.page-heading img {
  height: 2rem;
  filter: var(--icon-red);
}
@media (min-width: 768px) {
  .page-heading {
    font-size: 2rem;
  }
  .page-heading img {
    height: 3rem;
  }
}

.page-text {
  padding: 0.5rem;
  background: var(--vanilla--light);
  border-radius: 6px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loader {
  width: 10rem;
  aspect-ratio: 1/1;
  margin-inline: auto;
  border: 1rem solid var(--vanilla);
  border-top: 1rem solid var(--brown);
  border-radius: 9999px;
  animation: spin 1.5s linear infinite;
  display: inline-block;
}

.brand {
  color: var(--brand);
}

.dashboard {
  height: 100vh;
  display: grid;
  grid-template-areas: "header" "main" "mobile-nav";
  grid-template-rows: 50px 1fr 60px;
}
@media (min-width: 768px) {
  .dashboard {
    grid-template-areas: "sidebar main";
    grid-template-columns: 60px 1fr;
    grid-template-rows: 1fr;
  }
}
@media (min-width: 1024px) {
  .dashboard {
    grid-template-columns: 200px 1fr;
  }
}
.dashboard--no-sidebar {
  grid-template-areas: "main";
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .dashboard--no-sidebar {
    grid-template-areas: "main";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}

.dashboard__sidebar {
  grid-area: sidebar;
  display: none;
  overflow-x: auto;
}
@media (min-width: 768px) {
  .dashboard__sidebar {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.dashboard__mobile-nav {
  grid-area: mobile-nav;
  position: fixed;
  inset: auto 0 0 0;
  height: 60px;
  z-index: 99999;
}
.dashboard__mobile-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 35px at 50% 0%, var(--white) 35px, var(--vanilla) 36px);
  pointer-events: none;
  width: 80px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .dashboard__mobile-nav {
    display: none;
  }
}

.dashboard__mobile-nav-side {
  display: none;
  overflow-x: auto;
  position: fixed;
  inset: 0 0 0 auto;
  width: 200px;
}
@media (min-width: 768px) {
  .dashboard__mobile-nav-side {
    display: none;
  }
}

.dashboard__header {
  grid-area: header;
  position: relative;
}
@media (min-width: 768px) {
  .dashboard__header {
    display: none;
  }
}

.dashboard__main {
  grid-area: main;
  overflow-y: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .header-menu-toggle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .sidebar-menu-toggle {
    display: none !important;
  }
}

.dashboard:has(.header-menu-toggle--active) .dashboard__mobile-nav-side {
  display: block;
}
.dashboard:has(.header-menu-toggle--active) .dashboard__mobile-nav {
  inset: auto auto auto -200px;
  position: relative;
}
.dashboard:has(.header-menu-toggle--active) .dashboard__header {
  left: -200px;
}
.dashboard:has(.header-menu-toggle--active) .dashboard__main {
  left: -200px;
}

.dashboard:has(.sidebar-menu-toggle--active) .dashboard__sidebar {
  width: 200px;
}
.dashboard:has(.sidebar-menu-toggle--active) .dashboard__main {
  left: 140px;
}

.dashboard__header__content {
  height: 100%;
  width: 100%;
  padding: 8px 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-menu-toggle {
  display: grid;
  place-items: center;
  position: absolute;
  right: 0;
  margin-right: 10px;
  height: 50px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.header-menu-toggle:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background: var(--brown);
  box-shadow: 0 8px 0 var(--brown), 0 -8px 0 var(--brown);
}
@media (min-width: 768px) {
  .header-menu-toggle {
    display: none;
  }
}

.dashboard__header--collapse .header-menu-toggle:before {
  background: var(--red);
  box-shadow: none;
  width: 20px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.dashboard__header--collapse .header-menu-toggle:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background: var(--red);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mob-nav-side-footer,
.main-aside-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: end;
  font-weight: 600;
  opacity: 0.8;
  padding: 0.5rem;
  background: var(--vanilla--light);
  border: 2px solid var(--vanilla);
  border-radius: 8px;
}
.mob-nav-side-footer__year,
.main-aside-footer__year {
  font-size: 1rem;
  color: var(--black);
}
.mob-nav-side-footer__name,
.main-aside-footer__name {
  font-size: 0.9rem;
  color: var(--brand);
}
.mob-nav-side-footer__dev,
.main-aside-footer__dev {
  font-size: 0.8rem;
  color: var(--brown);
}
.mob-nav-side-footer__dev a,
.main-aside-footer__dev a {
  color: var(--orange);
}

.main-aside-footer {
  margin-top: auto;
  background: var(--white);
  border: none;
}

.dashboard__sidebar__content {
  height: calc(100% - 20px);
  width: 40px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (min-width: 1024px) {
  .dashboard__sidebar__content {
    width: calc(100% - 20px);
  }
}

.dashboard__sidebar--active .dashboard__sidebar__content,
.dashboard__sidebar:has(.sidebar-menu-toggle--active) .dashboard__sidebar__content {
  width: calc(100% - 20px);
}

.sidebar-menu-toggle {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  background: var(--brown);
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
.sidebar-menu-toggle:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background: var(--white);
  box-shadow: 0 7px 0 var(--white), 0 -7px 0 var(--white);
}
.sidebar-menu-toggle__label {
  display: none;
}

.dashboard__sidebar--active .sidebar-menu-toggle,
.dashboard__sidebar:has(.sidebar-menu-toggle--active) .sidebar-menu-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem;
}
.dashboard__sidebar--active .sidebar-menu-toggle__label,
.dashboard__sidebar:has(.sidebar-menu-toggle--active) .sidebar-menu-toggle__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  padding-left: 0.5rem;
}
.dashboard__sidebar--active .sidebar-menu-toggle:before,
.dashboard__sidebar:has(.sidebar-menu-toggle--active) .sidebar-menu-toggle:before {
  right: 0.75rem;
}

.sidebar-section {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sidebar-section:last-child {
  margin-top: auto;
}
.sidebar-section__label {
  display: none;
}
@media (min-width: 1024px) {
  .sidebar-section__label {
    display: block;
    margin-bottom: -0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--brown);
    padding: 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
}

.sidebar-logo {
  width: 40px;
}
@media (min-width: 1024px) {
  .sidebar-logo {
    display: none;
  }
}

.sidebar-logo-wide {
  display: none;
}
@media (min-width: 1024px) {
  .sidebar-logo-wide {
    display: block;
  }
}

.sidebar-create {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  background: var(--green);
  border: 6px solid var(--green);
  cursor: pointer;
  transition: all 150ms ease-in-out;
  z-index: 1300;
}
.sidebar-create img {
  width: 20px;
  height: 20px;
  filter: var(--icon-white);
}
.sidebar-create:hover {
  transition: all 150ms ease-in-out;
  background: var(--green--light);
  border: 6px solid var(--green--light);
}
.sidebar-create__label {
  display: none;
}
.sidebar-create--active {
  transition: all 150ms ease-in-out;
  background: var(--red--light);
  border: 6px solid var(--green--light);
}
.sidebar-create--active img {
  filter: var(--icon-red);
  rotate: 45deg;
}
.sidebar-create--active .sidebar-create__label {
  color: var(--red) !important;
}
.sidebar-create:hover .sidebar-create__label {
  display: block;
  position: absolute;
  top: 25%;
  background: var(--green);
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 9999px;
  color: var(--white) !important;
}
@media (min-width: 1024px) {
  .sidebar-create {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
  }
  .sidebar-create:hover .sidebar-create__label {
    position: relative;
    top: auto;
    background: none;
    padding: 0;
    font-size: 0.9rem;
    border-radius: 0;
  }
  .sidebar-create__label {
    font-weight: 600;
    color: var(--white);
    display: block;
  }
}

.sidebar-create-options {
  display: none;
  position: absolute;
  right: -200px;
  width: 190px;
  top: -3px;
  background: var(--green--light);
  border-radius: 14px;
  padding: 0.5rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1200;
}
.sidebar-create-options__item {
  min-height: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  border: 2px solid var(--green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  position: relative;
  z-index: 1300;
}
.sidebar-create-options__item::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: none;
  mask: url("data:image/svg+xml;utf8,<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='8' y='3' width='2' height='12' fill='white'/><rect x='3' y='8' width='12' height='2' fill='white'/></svg>") no-repeat center/contain;
  background-color: var(--white);
}
.sidebar-create-options__item:hover {
  transition: all 300ms ease-in-out;
  border-color: #b3dfc7;
}
.sidebar-create-options--active {
  display: flex;
}
.sidebar-create-options:before, .sidebar-create-options:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: -19px;
  top: auto;
  bottom: 59%;
  box-shadow: 12px -8px 0px 5px var(--green--light);
  border-top-right-radius: 20px;
  z-index: 1100;
  rotate: 90deg;
}
.sidebar-create-options:after {
  top: 59%;
  bottom: auto;
  box-shadow: -12px -8px 0px 5px var(--green--light);
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
}
@media (min-width: 1024px) {
  .sidebar-create-options {
    top: -140%;
  }
}

.dashboard__sidebar:has(.sidebar-create--active) {
  overflow-x: visible !important;
}

.dashboard__sidebar--active .sidebar-create,
.dashboard__sidebar:has(.sidebar-menu-toggle--active) .sidebar-create {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem;
}
.dashboard__sidebar--active .sidebar-create:hover .sidebar-create__label,
.dashboard__sidebar:has(.sidebar-menu-toggle--active) .sidebar-create:hover .sidebar-create__label {
  position: relative;
  top: auto;
  background: none;
  padding: 0;
  font-size: 0.9rem;
  border-radius: 0;
}
.dashboard__sidebar--active .sidebar-create__label,
.dashboard__sidebar:has(.sidebar-menu-toggle--active) .sidebar-create__label {
  font-weight: 600;
  color: var(--white);
  display: block;
}
.sidebar-link {
  display: grid;
  grid-template-columns: 40px 1fr;
  height: 40px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.sidebar-link__icon {
  display: grid;
  place-items: center;
}
.sidebar-link__icon img {
  width: 20px;
  height: 20px;
  filter: var(--icon-black--light);
}
.sidebar-link__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black--light);
  display: none;
}
.sidebar-link:hover {
  transition: all 300ms ease-in-out;
  background: var(--vanilla--light);
}
.sidebar-link:hover .sidebar-link__icon img {
  filter: var(--icon-red);
}
.sidebar-link:hover .sidebar-link__label {
  color: var(--black);
}
.sidebar-link--active {
  background: var(--vanilla--light);
}
.sidebar-link--active .sidebar-link__icon img {
  filter: var(--icon-red);
}
.sidebar-link--active .sidebar-link__label {
  color: var(--black);
}
.sidebar-link--active::after {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  width: 4px;
  background: var(--red);
}
@media (min-width: 1024px) {
  .sidebar-link__label {
    display: flex;
  }
}

.dashboard__sidebar--active .sidebar-link__label,
.dashboard__sidebar:has(.sidebar-menu-toggle--active) .sidebar-link__label {
  display: flex;
}

.sidebar-action {
  display: grid;
  grid-template-columns: 40px 1fr;
  height: 40px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.sidebar-action__icon {
  display: grid;
  place-items: center;
}
.sidebar-action__icon img {
  width: 20px;
  height: 20px;
  filter: var(--icon-black);
}
.sidebar-action__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}
.sidebar-action--profile {
  background: var(--grey);
}
.sidebar-action--profile:hover {
  transition: all 300ms ease-in-out;
  background: var(--grey--dark);
}
.sidebar-action--settings {
  background: var(--red--light);
}
.sidebar-action--settings:hover {
  transition: all 300ms ease-in-out;
  background: var(--red);
}
.sidebar-action--settings:hover .sidebar-action__icon img {
  filter: var(--icon-white);
}
.sidebar-action--settings:hover .sidebar-action__label {
  color: var(--white);
}

.dashboard__mobile-nav__content {
  height: 100%;
  width: 100%;
  padding: 0 10px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mobile-nav-item__icon img {
  width: 20px;
  height: 20px;
  filter: var(--icon-black--light);
}
.mobile-nav-item__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black--light);
}
.mobile-nav-item:hover .mobile-nav-item__icon img {
  filter: var(--icon-red);
}
.mobile-nav-item:hover .mobile-nav-item__label {
  color: var(--black);
}
.mobile-nav-item--active .mobile-nav-item__icon img {
  filter: var(--icon-red);
}
.mobile-nav-item--active .mobile-nav-item__label {
  color: var(--black);
}
.mobile-nav-item--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 3rem;
  background: var(--red);
  border-radius: 10px 10px 0 0;
}

.mobile-nav-create {
  display: grid;
  place-items: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  height: 55px;
  width: 55px;
  border-radius: 9999px;
  background: var(--green);
  border: none;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  z-index: 1300;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}
.mobile-nav-create img {
  width: 30px;
  height: 30px;
  filter: var(--icon-white);
}
.mobile-nav-create:hover {
  transition: all 150ms ease-in-out;
  background: var(--green--light);
}
.mobile-nav-create--active {
  transition: all 150ms ease-in-out;
  background: var(--red--light);
  border: 6px solid var(--green--light);
}
.mobile-nav-create--active img {
  filter: var(--icon-red);
  rotate: 45deg;
}

.mobile-nav-create-options {
  display: none;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 180px;
  background: var(--green--light);
  border-radius: 14px;
  padding: 0.5rem 0.5rem 1rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1200;
}
.mobile-nav-create-options__item {
  min-height: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  border: 2px solid var(--green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  position: relative;
}
.mobile-nav-create-options__item::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: none;
  mask: url("data:image/svg+xml;utf8,<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='8' y='3' width='2' height='12' fill='white'/><rect x='3' y='8' width='12' height='2' fill='white'/></svg>") no-repeat center/contain;
  background-color: var(--white);
}
.mobile-nav-create-options__item:hover {
  transition: all 300ms ease-in-out;
  border-color: #b3dfc7;
}
.mobile-nav-create-options--active {
  display: flex;
}
.mobile-nav-create-options:before, .mobile-nav-create-options:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  inset: auto auto -20px 42px;
  box-shadow: 8px -8px 0px 5px var(--green--light);
  border-top-right-radius: 20px;
  z-index: 1100;
}
.mobile-nav-create-options:after {
  inset: auto 42px -20px auto;
  box-shadow: -8px -8px 0px 5px var(--green--light);
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
}

.dashboard__mobile-nav-side__content {
  height: 100%;
  width: 100%;
  padding: 0 10px 60px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mob-nav-side-header {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-nav-side-header__label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
}

.mob-nav-side-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mob-nav-side-links__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  height: 40px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.mob-nav-side-links__item__icon {
  display: grid;
  place-items: center;
}
.mob-nav-side-links__item__icon img {
  width: 20px;
  height: 20px;
  filter: var(--icon-black--light);
}
.mob-nav-side-links__item__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black--light);
}
.mob-nav-side-links__item:hover {
  transition: all 300ms ease-in-out;
  background: var(--vanilla--light);
}
.mob-nav-side-links__item:hover .mob-nav-side-links__item__icon img {
  filter: var(--icon-red);
}
.mob-nav-side-links__item:hover .mob-nav-side-links__item__label {
  color: var(--black);
}
.mob-nav-side-links__item--active {
  background: var(--vanilla--light);
}
.mob-nav-side-links__item--active .mob-nav-side-links__item__icon img {
  filter: var(--icon-red);
}
.mob-nav-side-links__item--active .mob-nav-side-links__item__label {
  color: var(--black);
}
.mob-nav-side-links__item--active::after {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  width: 4px;
  background: var(--red);
}

.mob-nav-side-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}
.mob-nav-side-actions__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  height: 40px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.mob-nav-side-actions__item__icon {
  display: grid;
  place-items: center;
}
.mob-nav-side-actions__item__icon img {
  width: 20px;
  height: 20px;
  filter: var(--icon-black);
}
.mob-nav-side-actions__item__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}
.mob-nav-side-actions__item--profile {
  background: var(--grey);
}
.mob-nav-side-actions__item--profile:hover {
  transition: all 300ms ease-in-out;
  background: var(--grey--dark);
}
.mob-nav-side-actions__item--settings {
  background: var(--red--light);
}
.mob-nav-side-actions__item--settings:hover {
  transition: all 300ms ease-in-out;
  background: var(--red);
}
.mob-nav-side-actions__item--settings:hover .mob-nav-side-actions__item__icon img {
  filter: var(--icon-white);
}
.mob-nav-side-actions__item--settings:hover .mob-nav-side-actions__item__label {
  color: var(--white);
}

.dashboard__main__content {
  overflow-y: auto;
  height: 100%;
  width: calc(100% - 20px);
  padding: 1rem;
  border-radius: 22px;
  background: var(--white);
  box-shadow: inset 0px 0px 3px -2px var(--vanilla--dark);
}
@media (min-width: 768px) {
  .dashboard__main__content {
    height: calc(100% - 20px);
  }
}
.container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 60px;
  opacity: 0;
  animation: fadeIn 0.3s ease-in forwards;
}
.container:nth-child(1) {
  animation-delay: 0s;
}
.container:nth-child(2) {
  animation-delay: 0.05s;
}
.container:nth-child(3) {
  animation-delay: 0.1s;
}
.container:nth-child(4) {
  animation-delay: 0.15s;
}
.container:nth-child(5) {
  animation-delay: 0.2s;
}
.container:nth-child(6) {
  animation-delay: 0.25s;
}
.container:nth-child(7) {
  animation-delay: 0.3s;
}
.container:nth-child(8) {
  animation-delay: 0.35s;
}
.container:nth-child(9) {
  animation-delay: 0.4s;
}
.container:nth-child(10) {
  animation-delay: 0.45s;
}
.container:nth-child(11) {
  animation-delay: 0.5s;
}
.container:nth-child(12) {
  animation-delay: 0.55s;
}
.container:nth-child(13) {
  animation-delay: 0.6s;
}
.container:nth-child(14) {
  animation-delay: 0.65s;
}
.container:nth-child(15) {
  animation-delay: 0.7s;
}
.container:nth-child(16) {
  animation-delay: 0.75s;
}
.container:nth-child(17) {
  animation-delay: 0.8s;
}
.container:nth-child(18) {
  animation-delay: 0.85s;
}
.container:nth-child(19) {
  animation-delay: 0.9s;
}
.container:nth-child(20) {
  animation-delay: 0.95s;
}
@media (min-width: 768px) {
  .container {
    padding-bottom: 0;
  }
}
.container--form-page {
  max-width: 768px;
}
.container--table-page {
  gap: 1.5rem;
}
.container--crud-page {
  max-width: 768px;
}
@media (max-width: 768px) {
  .container--calendar-page .breadcrumb,
  .container--calendar-page .cta-block,
  .container--calendar-page .divider {
    display: none;
  }
}

.container__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .container__split {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.container__split__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.container__split__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  background-color: var(--vanilla--light);
}
.auth-page .button {
  width: 100% !important;
}
.auth-page__container {
  width: 100%;
  max-width: 450px;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.auth-page__logo {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 2rem;
}
.auth-page__title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--black);
}
.auth-page__description {
  text-align: center;
  font-size: 1rem;
  color: var(--black--light);
  margin-bottom: 2rem;
}
.auth-page__content {
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-page__footer {
  padding-top: 1.5rem;
  border-top: 3px solid var(--grey--light);
}
@media (max-width: 768px) {
  .auth-page {
    padding: 1rem 0.5rem;
  }
  .auth-page__container {
    padding: 2rem 1.5rem;
  }
  .auth-page__title {
    font-size: 1.5rem;
  }
}

.auth-form-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.auth-form-item label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}
.auth-form-item input,
.auth-form-item select,
.auth-form-item textarea {
  padding: 0.75rem;
  border: 2px solid var(--vanilla);
  border-radius: 0.4rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.auth-form-item input:hover,
.auth-form-item select:hover,
.auth-form-item textarea:hover {
  border-color: var(--vanilla--dark);
  background-color: var(--vanilla--light);
}
.auth-form-item input:focus,
.auth-form-item select:focus,
.auth-form-item textarea:focus {
  outline: none;
  border-color: var(--vanilla--dark);
  background-color: var(--vanilla);
}
.auth-form-item input::placeholder,
.auth-form-item select::placeholder,
.auth-form-item textarea::placeholder {
  color: var(--black--light);
}

.onsite-induction-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--vanilla--light);
}
.onsite-induction-page__header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 3rem;
  background: var(--white);
  border-bottom: 3px solid var(--vanilla--dark);
}
.onsite-induction-page__logo {
  display: block;
  width: auto;
  max-height: 50px;
  flex-shrink: 0;
}
.onsite-induction-page__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}
.onsite-induction-page__content {
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.onsite-induction-page__content video {
  width: 100%;
  border-radius: 0.5rem;
}
.onsite-induction-page__content .data-table {
  width: 100%;
}
.onsite-induction-page__start {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2rem;
  padding: 4rem 2rem;
  text-align: center;
}
.onsite-induction-page__start p {
  font-size: 1.5rem;
  color: var(--black);
  max-width: 600px;
}
.onsite-induction-page__start .button {
  font-size: 1.5rem;
  padding: 1.25rem 4rem;
}

.induction-video-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  position: relative;
}

.induction-video-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 0.5rem;
  z-index: 10;
  pointer-events: none;
}
.induction-video-spinner__ring {
  width: 56px;
  height: 56px;
  border: 6px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: induction-spin 0.75s linear infinite;
}

.induction-video-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem 1rem;
  background: var(--vanilla--dark);
  border-radius: 0 0 0.5rem 0.5rem;
}
.induction-video-controls__play {
  background: var(--primary, #0d6efd);
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  padding: 0.4rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.induction-video-controls__play:hover {
  opacity: 0.85;
}
.induction-video-controls__time {
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 600;
}

@keyframes induction-spin {
  to {
    transform: rotate(360deg);
  }
}
.induction-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 3rem;
  background: var(--vanilla--dark);
  border-radius: 0.75rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
  align-self: center;
}
.induction-countdown__label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.induction-countdown__seconds {
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--black);
  animation: countdown-pulse 1s ease-in-out infinite;
}

.induction-complete-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 4rem;
  background: #d4edda;
  border: 3px solid #28a745;
  border-radius: 0.75rem;
  text-align: center;
  max-width: 700px;
  width: 100%;
  align-self: center;
}
.induction-complete-banner__icon {
  font-size: 4rem;
  color: #28a745;
  line-height: 1;
}
.induction-complete-banner__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #155724;
}
.induction-complete-banner__sub {
  font-size: 1.2rem;
  color: #155724;
}

@keyframes countdown-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
.alert {
  position: relative;
  position: relative;
  padding: 1rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.alert::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.alert__title {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.alert__message {
  flex: 1;
  font-weight: 600;
}
.alert__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: inherit;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.15s ease-in-out;
}
.alert__close:hover {
  opacity: 0.75;
}
.alert__close:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.alert--info {
  color: var(--black);
  background-color: var(--grey);
  border-color: var(--grey);
}
.alert--success {
  color: var(--white);
  background-color: var(--green--light);
  border-color: var(--green);
}
.alert--warning {
  color: var(--black);
  background-color: var(--yellow);
  border-color: var(--yellow);
}
.alert--danger, .alert--error {
  color: var(--red);
  background-color: var(--red--light);
  border-color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  user-select: none;
  width: 100%;
  position: relative;
}
.button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .button {
    width: fit-content;
  }
}
.button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}
.button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.button__icon img {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  filter: var(--icon-white);
}
.button__label {
  display: inline-block;
}
.button__spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.button__spinner-icon {
  width: 1.25rem;
  height: 1.25rem;
  animation: button-spin 1s linear infinite;
}
.button__spinner-circle {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: button-spinner-dash 1.5s ease-in-out infinite;
}
.button--primary {
  background-color: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}
.button--primary:hover:not(:disabled) {
  background-color: var(--brown--light);
  border-color: var(--brown--light);
}
.button--primary:active:not(:disabled) {
  background-color: var(--brown--light);
  border-color: var(--brown--light);
}
.button--secondary {
  background-color: var(--grey);
  border-color: var(--grey);
  color: var(--black);
}
.button--secondary:hover:not(:disabled) {
  background-color: var(--grey--light);
  border-color: var(--grey--light);
}
.button--secondary:active:not(:disabled) {
  background-color: var(--grey--light);
  border-color: var(--grey--light);
}
.button--secondary .button__icon img {
  filter: var(--icon-black);
}
.button--danger {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.button--danger:hover:not(:disabled) {
  background-color: var(--red--light);
  border-color: var(--red--light);
}
.button--danger:active:not(:disabled) {
  background-color: var(--red--light);
  border-color: var(--red--light);
}
.button--success {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.button--success:hover:not(:disabled) {
  background-color: var(--green--light);
  border-color: var(--green--light);
}
.button--success:active:not(:disabled) {
  background-color: var(--green--light);
  border-color: var(--green--light);
}
.button--ghost {
  background-color: transparent;
  border-color: var(--grey--light);
  color: var(--black--light);
}
.button--ghost:hover:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: var(--grey);
  color: var(--black);
}
.button--ghost:active:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.2);
}
.button--link {
  background-color: transparent;
  border-color: transparent;
  color: var(--brown);
  padding-left: 0;
  padding-right: 0;
}
.button--link:hover:not(:disabled) {
  color: var(--brown--light);
  text-decoration: underline;
}
.button--link:active:not(:disabled) {
  color: var(--brown--light);
}
.button--outlined {
  background-color: transparent;
}
.button--outlined.button--primary {
  border-color: var(--brown);
  color: var(--brown);
}
.button--outlined.button--primary:hover:not(:disabled) {
  background-color: var(--brown);
  color: var(--white);
}
.button--outlined.button--secondary {
  border-color: var(--grey--light);
  color: var(--grey);
}
.button--outlined.button--secondary:hover:not(:disabled) {
  background-color: var(--grey);
  color: var(--white);
}
.button--outlined.button--danger {
  border-color: var(--red);
  color: var(--red);
}
.button--outlined.button--danger:hover:not(:disabled) {
  background-color: var(--red--light);
  color: var(--white);
}
.button--outlined.button--success {
  border-color: var(--green);
  color: var(--green);
}
.button--outlined.button--success:hover:not(:disabled) {
  background-color: var(--green);
  color: var(--white);
}
.button--small {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}
.button--small .button__icon img {
  width: 1rem;
  height: 1rem;
}
.button--small .button__spinner-icon {
  width: 1rem;
  height: 1rem;
}
.button--large {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}
.button--large .button__icon img {
  width: 1.5rem;
  height: 1.5rem;
}
.button--large .button__spinner-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.button--disabled, .button:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}
.button--loading {
  position: relative;
  pointer-events: none;
}
.button--full-width {
  width: 100%;
}
.button--icon-only {
  padding: 0.625rem;
}
.button--icon-only.button--small {
  padding: 0.375rem;
}
.button--icon-only.button--large {
  padding: 0.75rem;
}

@keyframes button-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes button-spinner-dash {
  0% {
    stroke-dashoffset: 60;
  }
  50% {
    stroke-dashoffset: 15;
  }
  100% {
    stroke-dashoffset: 60;
  }
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-stack {
  display: grid;
  gap: 0.75rem;
  max-width: 32rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
}

input,
textarea,
select {
  padding: 0.75rem 1rem;
  background: var(--vanilla--light);
  border-radius: 14px;
  min-height: 40px;
  width: 100%;
  color: var(--black--light);
  cursor: text;
}

select {
  cursor: pointer;
}

textarea {
  min-height: 120px;
}

input:focus,
textarea:focus,
select:focus,
checkbox-label:focus {
  background: var(--vanilla);
  border-color: var(--vanilla--dark);
  color: var(--black);
}

input:hover,
textarea:hover,
select:hover,
checkbox-label:hover {
  background: var(--vanilla);
  border-color: var(--vanilla--dark);
  color: var(--black);
  transition: all 150ms ease-in-out;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  color: var(--black--light);
  opacity: 1; /* Firefox */
}

input:required::after {
  content: "*";
  color: var(--red);
  font-size: 1.2rem;
  line-height: 0.5;
}

input[type=checkbox] {
  display: none;
}

.checkbox-label {
  position: relative;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--brown);
  background: var(--vanilla--light);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  height: 40px;
  padding: 0 0.5rem;
  cursor: pointer;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--brown);
  border-radius: 6px;
  background: var(--vanilla--light);
  display: inline-block;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.checkbox:checked + .checkbox-custom {
  background: var(--brown);
  border-color: var(--brown);
}

.checkbox-custom::after {
  content: "";
  display: block;
  width: 13px;
  height: 7px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  position: absolute;
  top: 3px;
  left: 2px;
  opacity: 0;
  transform: rotate(-45deg);
  transition: opacity 0.2s;
}

.checkbox:checked + .checkbox-custom::after {
  opacity: 1;
}

.checkbox-standalone {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.checkbox-standalone .checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--brown);
  border-radius: 6px;
  background: transparent;
  display: inline-block;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-standalone .checkbox:checked + .checkbox-custom {
  background: var(--brown);
  border-color: var(--brown);
}
.checkbox-standalone .checkbox-custom::after {
  content: "";
  display: block;
  width: 13px;
  height: 7px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  position: absolute;
  top: 3px;
  left: 2px;
  opacity: 0;
  transform: rotate(-45deg);
  transition: opacity 0.2s;
}
.checkbox-standalone .checkbox:checked + .checkbox-custom::after {
  opacity: 1;
}

.error {
  background: var(--red--light);
  color: var(--red);
  padding: 0.5rem;
  font-weight: 600;
  border-radius: 8px;
}

.validation-errors {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.validation-errors .validation-message {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
}

select {
  appearance: none;
  background-image: url("icons/chevron-down.svg"), linear-gradient(var(--grey--tl), var(--grey--tl));
  background-repeat: no-repeat, no-repeat;
  background-position: right 0.75rem center, right 0;
  background-size: 1rem, 2.5rem 100%;
  padding-right: 2.5rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1400;
  animation: fadeIn 0.2s ease-in-out;
}

.modal-dialog {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 90%;
  animation: slideUp 0.3s ease-out;
  overflow: hidden;
}

.modal-header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--vanilla);
  position: relative;
}
.modal-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.modal-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--black--light);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background-color: var(--grey);
  color: var(--black);
}

.modal-body {
  padding: 20px;
  color: var(--black);
  line-height: 1.6;
}

.modal-footer {
  padding: 20px;
  border-top: 1px solid var(--grey);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.modal-events-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal-event-item {
  display: flex;
  align-items: center;
}

.modal-event-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 150ms ease-in-out;
}
.modal-event-link:hover {
  color: var(--brand);
}

.modal-event-private-label {
  margin-left: 0.4rem;
  font-size: 0.75em;
  opacity: 0.6;
  font-style: italic;
}

.modal-event-private {
  color: var(--black--light);
  font-style: italic;
  font-size: 0.9rem;
}

.data-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.data-table__row {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.08) 0px 1px 2px;
  transition: background-color all 150ms ease-in-out, box-shadow all 150ms ease-in-out;
}
.data-table__row--header {
  display: none;
}
.data-table__row--skeleton {
  pointer-events: none;
  opacity: 0.6;
}
.data-table__row__cell {
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  color: var(--brown);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--vanilla);
  word-break: break-word;
}
.data-table__row__cell--empty {
  color: var(--black--light);
  font-style: italic;
}
.data-table__row__cell--sortable {
  cursor: pointer;
  user-select: none;
}
.data-table__row__cell--sortable:focus {
  outline: none;
}
.data-table__row__cell--sortable:focus-visible {
  outline: 2px solid var(--brown--light);
  outline-offset: -2px;
}
.data-table__row__cell--sortable:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.data-table__row__cell:nth-child(odd) {
  background: var(--vanilla--light);
}
.data-table__row__cell:first-child {
  background: var(--brown--light);
  color: var(--white);
  font-size: 1.1rem;
  border-bottom: none;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.08) 0px 1px 2px;
}
.data-table__row__cell:first-child .cell-label {
  display: none;
}
.data-table__row__cell:last-child {
  border-radius: 0 0 10px 10px;
  border-bottom: none;
}
.data-table__row__cell .cell-label {
  width: 40%;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}
.data-table__row__cell a {
  color: inherit;
}

.cell-empty {
  color: var(--black--light);
  font-style: italic;
  font-weight: 500;
}

@media (min-width: 768px) {
  .data-table {
    gap: 0;
  }
  .data-table__row {
    display: flex;
    border-bottom: 1px solid var(--vanilla);
    border-radius: 0;
    box-shadow: none;
  }
  .data-table__row:hover:not(.data-table__row--skeleton) {
    background-color: rgba(0, 0, 0, 0.02);
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
  }
  .data-table__row:nth-child(odd) {
    background: var(--vanilla--light);
  }
  .data-table__row:nth-child(even) {
    background: var(--white);
  }
  .data-table__row:last-child {
    border-radius: 0 0 10px 10px;
  }
  .data-table__row__cell {
    border: none;
    background: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    white-space: nowrap;
  }
  .data-table__row__cell .cell-label {
    display: none;
  }
  .data-table__row__cell:nth-child(odd) {
    background: none;
  }
  .data-table__row__cell:first-child {
    font-size: 0.9rem;
    color: var(--black);
    box-shadow: none;
    width: 100%;
    justify-content: flex-start;
  }
  .data-table__row__cell:last-child {
    width: 122px;
    min-width: unset;
  }
  .data-table__row__cell--sortable {
    cursor: pointer;
  }
  .data-table__row__cell--sortable:focus-visible {
    background-color: rgba(0, 0, 0, 0.04);
  }
  .data-table__row--header {
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    background: var(--brown--light) !important;
    border-radius: 10px 10px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
    overflow: visible;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .data-table__row--header .data-table__row__cell {
    color: var(--white);
    font-size: 1rem;
    padding: 0.65rem 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .data-table__row {
    transition: none;
  }
}
.filter-controls {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-end;
}
.filter-controls__search {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.paging-controls {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.paging-controls__nav {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.paging-controls__button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--vanilla--light);
  color: var(--brown);
  text-decoration: none;
  position: relative;
  transition: all 150ms ease-in-out;
  cursor: pointer;
  padding: 0;
}
.paging-controls__button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.08) 0px 1px 2px;
}
.paging-controls__button:focus-visible {
  outline: 2px solid var(--brown--light);
  outline-offset: 2px;
}
.paging-controls__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.paging-controls__button::after {
  content: attr(data-label);
  display: none;
}
.paging-controls__icon {
  width: 20px;
  height: 20px;
  filter: var(--icon-brown);
}
.paging-controls__icon--double {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 2px;
}
.paging-controls__button--first .paging-controls__icon--double, .paging-controls__button--last .paging-controls__icon--double {
  display: block;
}
.paging-controls__button--first .paging-controls__icon:not(.paging-controls__icon--double), .paging-controls__button--last .paging-controls__icon:not(.paging-controls__icon--double) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-right: 2px;
}
.paging-controls__info {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 600;
  min-width: 3rem;
  justify-content: center;
}
.paging-controls__current {
  font-weight: 600;
}
.paging-controls__separator {
  color: var(--black--light);
}
.paging-controls__total {
  color: var(--black--light);
}
.paging-controls__select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.paging-controls__select label {
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 600;
}
.paging-controls__select select {
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--vanilla);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
.paging-controls__select select:hover {
  border-color: var(--brown--light);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.08) 0px 1px 2px;
}
.paging-controls__select select:focus {
  outline: none;
  border-color: var(--brown--light);
  box-shadow: 0 0 0 2px rgba(141, 63, 43, 0.1);
}

@media (min-width: 1024px) and (hover: hover) {
  .paging-controls__button::after {
    content: attr(data-label);
    position: absolute;
    bottom: calc(100% + 0.4rem);
    left: 50%;
    transform: translateX(-50%) scale(0.98);
    background: var(--black);
    color: var(--white);
    padding: 0.25rem 0.4rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.08) 0px 1px 2px;
    opacity: 0;
    pointer-events: none;
    transition: all 150ms ease-in-out;
  }
  .paging-controls__button:hover:not(:disabled)::after, .paging-controls__button:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
@media (max-width: 678px) {
  .paging-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .paging-controls__nav {
    justify-content: center;
  }
  .paging-controls__select {
    margin-left: 0;
    justify-content: center;
  }
  .paging-controls__select label {
    order: -1;
  }
}
.sort-icon {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
  transition: transform 0.2s ease-in-out;
  filter: var(--icon-white);
  flex-shrink: 0;
}
.sort-icon--down {
  transform: rotate(180deg);
}

.skeleton-bar {
  display: block;
  height: 1rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 6px;
  width: 60%;
}
@media (prefers-reduced-motion: reduce) {
  .skeleton-bar {
    animation: none;
    background: rgba(0, 0, 0, 0.08);
  }
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.table-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  width: 100%;
  justify-content: end;
}
.table-actions__action {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--vanilla--light);
  color: var(--brown);
  text-decoration: none;
  position: relative;
  transition: all 150ms ease-in-out;
  cursor: pointer;
}
.table-actions__action:hover {
  transform: translateY(-1px);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.08) 0px 1px 2px;
}
.table-actions__action:focus-visible {
  outline: 2px solid var(--brown--light);
  outline-offset: 2px;
}
.table-actions__action::after {
  content: "";
}
.table-actions__action--edit {
  background: var(--vanilla--dark);
  border-color: var(--vanilla--dark);
}
.table-actions__action--edit .table-actions__icon {
  filter: var(--icon-brown);
}
.table-actions__action--details {
  background: var(--grey);
  border-color: var(--grey--dark);
}
.table-actions__action--details .table-actions__icon {
  filter: var(--icon-black);
}
.table-actions__action--delete {
  background: var(--red);
  border-color: var(--red);
}
.table-actions__action--delete .table-actions__icon {
  filter: var(--icon-white);
}
.table-actions__action--delete:hover {
  background: var(--red--light);
  border-color: var(--red--light);
}
.table-actions__action--delete:focus-visible {
  outline-color: var(--red);
}
.table-actions__action--delete:hover .table-actions__icon {
  filter: var(--icon-red);
}
.table-actions__icon {
  width: 20px;
  height: 20px;
}

@media (min-width: 1024px) and (hover: hover) {
  .table-actions__action::after {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 0.4rem);
    top: 50%;
    transform: translateY(-50%) scale(0.98);
    background: var(--black);
    color: var(--white);
    padding: 0.25rem 0.4rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.08) 0px 1px 2px;
    opacity: 0;
    pointer-events: none;
    transition: all 150ms ease-in-out;
  }
  .table-actions__action:hover::after, .table-actions__action:focus-visible::after {
    z-index: 999;
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}
.breadcrumb {
  background: var(--vanilla--light);
  padding: 0.5rem 0.75rem;
  border-radius: 14px;
  min-height: 40px;
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb__item {
  color: var(--brown);
  font-weight: 600;
  opacity: 0.65;
}
.breadcrumb__item--active {
  opacity: 1;
}
.breadcrumb__item__icon img {
  width: 20px;
  height: 20px;
  filter: var(--icon-brown);
}
.breadcrumb__separator {
  width: 40px;
  height: 100%;
  opacity: 0.65;
  display: grid;
  place-items: center;
}
.breadcrumb__separator::after {
  content: url("/icons/chevron-right.svg");
  filter: var(--icon-brown);
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}

.details__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.details__title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.8rem;
}
.details__title__icon {
  width: 2.2rem;
  height: 2.2rem;
  filter: var(--icon-red);
}
.details__description {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black--light);
}
.details--expanded {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .details--expanded {
    flex-direction: row;
    justify-content: space-between;
  }
}
.details__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-induction-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--vanilla--light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}
.contact-induction-row__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-induction-row__name {
  font-weight: 600;
  color: var(--brown);
}
.contact-induction-row__email {
  font-weight: 500;
  color: var(--black--light);
  font-size: 0.9em;
}
.contact-induction-row__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.contact-induction-row__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}
@media (max-width: 768px) {
  .contact-induction-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-induction-row__actions {
    margin-left: 0;
    width: 100%;
  }
}

.divider {
  width: 100%;
  padding: 2px;
  background: var(--grey--light);
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.form-progress {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  background: var(--vanilla--light);
  padding: 1rem 0;
  border-radius: 16px;
}
.form-progress__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  flex: 1;
  position: relative;
}
.form-progress__item__number {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--grey--tl);
  color: var(--black--light);
  font-weight: 600;
  display: grid;
  place-items: center;
}
.form-progress__item__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--black--light);
}
.form-progress__item:after {
  content: "";
  height: 4px;
  width: 40%;
  background: var(--grey--tl);
  position: absolute;
  top: 25%;
  right: -25%;
  border-radius: 9999px;
}
.form-progress__item:last-child::after {
  display: none !important;
}
.form-progress__item--active .form-progress__item__number {
  background: var(--red--tl);
  border-color: var(--brown);
  color: var(--red);
}
.form-progress__item--active .form-progress__item__label {
  color: var(--black);
}
.form-progress__item--complete .form-progress__item__number {
  background: var(--green--light);
  border-color: var(--green);
  color: var(--white);
}
.form-progress__item--complete:after {
  background: var(--green--light);
}
@media (min-width: 768px) {
  .form-progress {
    height: fit-content;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .form-progress .form-progress__item {
    flex: none;
  }
  .form-progress .form-progress__item::after {
    display: none;
  }
}
@media (min-width: 1024px) {
  .form-progress {
    width: 100%;
    max-width: 200px;
  }
  .form-progress .form-progress__item {
    flex-direction: row;
    gap: 0.5rem;
  }
  .form-progress .form-progress__item__label {
    text-align: left;
    font-size: 0.9rem;
  }
  .form-progress .form-progress__item::after {
    display: block;
    width: 4px;
    height: 35%;
    top: 107%;
    right: 90%;
  }
}

.crud-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.crud-page__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.test-content-container {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .test-content-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.detail-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey--dark);
}
.detail-item:last-child {
  border-bottom: none;
}
.detail-item__label {
  flex: 0 0 150px;
  font-weight: 600;
  color: var(--brown--light);
}
.detail-item__value {
  flex: 1;
  color: var(--black--light);
}
.detail-item__value--empty {
  color: var(--grey--dark);
  font-style: italic;
}
@media (max-width: 768px) {
  .detail-item {
    flex-direction: column;
    gap: 0.25rem;
  }
  .detail-item__label {
    flex: 1;
  }
}

.catering-session-card {
  background-color: var(--vanilla);
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s ease;
}
.catering-session-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.catering-session-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.catering-session-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brown);
  margin: 0;
}
.catering-session-card__time {
  font-size: 0.875rem;
  color: var(--brown);
  opacity: 0.7;
}
.catering-session-card__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background-color: white;
  border-radius: 0.4rem;
}
.catering-session-card__total-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.catering-session-card__total-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brown);
}
.catering-session-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 678px) {
  .catering-session-card {
    padding: 1rem;
  }
  .catering-session-card__total-value {
    font-size: 1.25rem;
  }
}

.dashboard-sessions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 678px) {
  .dashboard-sessions {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.dashboard-section {
  margin-bottom: 2rem;
}
.dashboard-section__heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.option-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.option-breakdown__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background-color: white;
  border-radius: 0.4rem;
  font-size: 0.875rem;
}
.option-breakdown__item-name {
  color: var(--brown);
}
.option-breakdown__item-count {
  font-weight: 600;
  color: var(--brown);
}

.room-event-card {
  background-color: var(--vanilla);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.3s ease;
}
.room-event-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.room-event-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.room-event-card__room {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brown);
}
.room-event-card__time {
  font-size: 0.875rem;
  color: var(--brown);
  opacity: 0.7;
}
.room-event-card__event {
  font-size: 0.875rem;
  color: var(--brown);
  opacity: 0.7;
}
.room-event-card__sessions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.room-event-card__session {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.room-event-card__session-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.room-event-card__catering-detail {
  padding: 1rem;
  background-color: white;
  border-radius: 0.4rem;
}
.room-event-card__detail-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.room-event-card__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}
.room-event-card__detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.room-event-card__detail-item--spaced {
  margin-top: 0.75rem;
}
.room-event-card__detail-label {
  font-size: 0.75rem;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.room-event-card__detail-value {
  font-size: 0.875rem;
  color: var(--brown);
  font-weight: 500;
}
@media (max-width: 678px) {
  .room-event-card {
    padding: 1rem;
  }
  .room-event-card__detail-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --tag-padding-block: 0.25rem;
  --tag-padding-inline: 0.45rem;
  --tag-gap: 0.5rem;
  --tag-border-radius: 6px;
  --tag-font-size: clamp(0.55rem, 1vw, 0.7rem);
  --tag-line-height: 1;
  --tag-transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-type-tag__container {
  display: inline-flex;
  align-items: center;
  gap: var(--tag-gap);
  padding: var(--tag-padding-block) var(--tag-padding-inline);
  font-size: var(--tag-font-size);
  font-weight: 700;
  line-height: var(--tag-line-height);
  letter-spacing: 3px;
  border-radius: var(--tag-border-radius);
  text-transform: uppercase;
  transition: var(--tag-transition);
  cursor: default;
}
.page-type-tag__container:hover {
  opacity: 0.85;
}
.page-type-tag__container:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.page-type-tag__icon {
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  align-self: center;
}
.page-type-tag__label {
  display: inline-block;
}
.page-type-tag--create {
  background-color: var(--tag-create-bg, #c1dfce);
  color: var(--green);
}
.page-type-tag--create .page-type-tag__icon {
  filter: var(--icon-green);
}
.page-type-tag--view {
  background-color: var(--tag-view-bg, var(--grey));
  color: var(--black);
}
.page-type-tag--view .page-type-tag__icon {
  filter: var(--icon-black);
}
.page-type-tag--edit {
  background-color: var(--tag-edit-bg, var(--vanilla--dark));
  color: var(--brown);
}
.page-type-tag--edit .page-type-tag__icon {
  filter: var(--icon-brown);
}
.page-type-tag--delete {
  background-color: var(--tag-delete-bg, var(--red--light));
  color: var(--red);
}
.page-type-tag--delete .page-type-tag__icon {
  filter: var(--icon-red);
}
.page-type-tag--report {
  background-color: var(--tag-report-bg, var(--orange));
  color: var(--white);
}
.page-type-tag--report .page-type-tag__icon {
  filter: var(--icon-white);
}
.page-type-tag--dashboard {
  background-color: var(--tag-dashboard-bg, var(--brown--light));
  color: var(--white);
}
.page-type-tag--dashboard .page-type-tag__icon {
  filter: var(--icon-white);
}
.page-type-tag--event {
  background-color: var(--tag-event-bg, var(--yellow));
  color: var(--black);
}
.page-type-tag--event .page-type-tag__icon {
  filter: var(--icon-black);
}
.page-type-tag--account {
  background-color: var(--tag-account-bg, var(--pistachio));
  color: var(--black);
}
.page-type-tag--account .page-type-tag__icon {
  filter: var(--icon-black);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .cta-row {
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.status-badge--valid {
  background-color: var(--green--light);
  color: var(--white);
}
.status-badge--expiring {
  background-color: var(--yellow);
  color: var(--black);
}
.status-badge--expired {
  background-color: var(--red--light);
  color: var(--red);
}
.status-badge--none {
  background-color: var(--grey);
  color: var(--black--light);
}
.status-badge--role {
  background-color: var(--vanilla);
  color: var(--brown);
  border-radius: 10px;
}
.status-badge__date {
  display: inline;
  font-size: 0.85em;
  color: var(--black--light);
  font-weight: 500;
}

.search {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .search {
    max-width: 400px;
  }
}
.search__input-wrapper {
  width: 100%;
  position: relative;
}
.search__input {
  border-radius: 16px;
  padding: 0.5rem 1rem;
}
.search__icon {
  position: absolute;
  right: 0;
  width: 40px;
  height: 100%;
  padding: 0.6rem;
  border-radius: 16px;
  background: var(--grey--tl);
}
.search__icon img {
  filter: var(--icon-black);
}
.search__clear {
  width: auto;
}

@media (min-width: 768px) {
  .form-item .search {
    max-width: none;
  }
}

.equipment-plan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.75rem;
  background: var(--white);
  border: 1px solid var(--vanilla);
  border-radius: 8px;
  padding: 1rem;
}

.equipment-plan__hint {
  font-size: 0.85rem;
  color: var(--black--light);
  margin: 0;
}

.equipment-plan__tabs {
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid var(--vanilla);
  flex-wrap: wrap;
}

.equipment-plan__tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black--light);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color all 150ms ease-in-out, border-color all 150ms ease-in-out;
}
.equipment-plan__tab input[type=radio] {
  display: none;
}
.equipment-plan__tab:hover:not(.equipment-plan__tab--active) {
  color: var(--black);
  border-bottom-color: var(--grey--dark);
}
.equipment-plan__tab--active {
  color: var(--brown);
  border-bottom-color: var(--brown);
}
.equipment-plan__tab--active::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("/icons/confirmed.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: var(--icon-brown);
  flex-shrink: 0;
}

.equipment-plan__tab-days-input {
  width: 2.8rem;
  text-align: center;
  padding: 0.15rem 0.3rem;
  border: 1px solid var(--vanilla--dark);
  border-radius: 4px;
  font-size: 0.875rem;
  background: var(--white);
  color: var(--black);
  font-weight: 500;
  min-height: unset;
  width: auto;
}

.equipment-plan__section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vanilla);
}

.equipment-plan__section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black--light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.equipment-plan__sizes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.equipment-plan__sizes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.equipment-plan__size-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 130px;
}

.equipment-plan__ppe-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.equipment-plan__ppe-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.equipment-plan__ppe-type {
  min-width: 120px;
}

.equipment-plan__grid-wrapper {
  overflow-x: auto;
}

.equipment-plan__grid {
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 320px;
  width: 100%;
}
.equipment-plan__grid thead th {
  padding: 0.4rem 0.6rem;
  text-align: center;
  border-bottom: 2px solid var(--vanilla);
  font-weight: 600;
  color: var(--black--light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.equipment-plan__grid tbody tr {
  border-bottom: 1px solid var(--vanilla);
}
.equipment-plan__grid tbody tr:nth-child(even) {
  background: var(--vanilla--light);
}

.equipment-plan__col-day {
  text-align: left !important;
  min-width: 90px;
  padding: 0.4rem 0.6rem;
  white-space: nowrap;
  font-weight: 600;
  color: var(--black);
}

.equipment-plan__col-ppe {
  text-align: center;
  padding: 0.3rem 0.5rem;
  vertical-align: middle;
}

.equipment-plan__col-type {
  padding: 0.2rem 0.4rem;
  min-width: 110px;
  vertical-align: middle;
}

.equipment-plan__day-row--inactive td {
  opacity: 0.35;
}

.form-control--sm {
  padding: 0.2rem 0.4rem;
  font-size: 0.85rem;
  min-height: unset;
}

/* ── Equipment Plan Editor ─────────────────────────── */
.equipment-plan {
  margin-top: 0.75rem;
}

.equipment-plan__mode-label {
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-text-muted, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.equipment-plan__mode-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
}

.equipment-plan__mode-option {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

.equipment-plan__mode-option.active {
  background: #eff6ff;
  border-color: #93c5fd;
}

.equipment-plan__n-days-input {
  width: 3.2rem;
  text-align: center;
  padding: 0.15rem 0.25rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* ── Day grid ──────────────────────────────────────── */
.equipment-plan__grid-wrapper {
  margin-top: 0.75rem;
  overflow-x: auto;
}

.equipment-plan__grid {
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 320px;
}

.equipment-plan__grid thead th {
  padding: 0.35rem 0.6rem;
  text-align: center;
  border-bottom: 2px solid #e5e7eb;
  font-size: 1rem;
}

.equipment-plan__col-day {
  text-align: left !important;
  min-width: 90px;
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
  color: #374151;
}

.equipment-plan__col-ppe {
  text-align: center;
  padding: 0.3rem 0.5rem;
}

.equipment-plan__day-row--inactive td {
  opacity: 0.35;
}

.equipment-plan__grid tbody tr:nth-child(even) {
  background: #f9fafb;
}

/* ── Static sizes row ──────────────────────────────── */
.equipment-plan__static-sizes {
  margin: 0.75rem 0 0.5rem;
}

.equipment-plan__static-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.4rem;
}

.equipment-plan__static-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: flex-end;
}

.equipment-plan__static-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 130px;
}

.equipment-plan__static-item label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-control--sm {
  padding: 0.2rem 0.4rem;
  font-size: 0.85rem;
}

/* Shoe type column in grid */
.equipment-plan__col-type {
  padding: 0.2rem 0.4rem;
  min-width: 110px;
}

.modal-dialog--medium {
  max-width: 520px;
}

.pickup-modal__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.pickup-modal__event {
  font-size: 0.9rem;
  font-weight: 600;
}
.pickup-modal__field {
  margin-bottom: 1.25rem;
}
.pickup-modal__field-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.pickup-modal__select-all {
  padding-bottom: 0.6rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-color, #e0d8cc);
  font-weight: 600;
}
.pickup-modal__ppe-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card {
  position: relative;
  border-radius: 6px;
  background: var(--vanilla);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.card--small {
  border-radius: 10px;
}
.card--medium {
  border-radius: 16px;
}
.card--large {
  border-radius: 24px;
}
.card--white {
  background: var(--white);
}
.card--vanilla {
  background: var(--vanilla--dark);
}
.card--yellow {
  background: var(--yellow);
}
.card--orange {
  background: var(--orange);
}
.card--red {
  background: var(--red);
}
.card--green {
  background: var(--green);
}
.card--brown {
  background: var(--brown);
}
.card--grey {
  background: var(--black--light);
}
.card--black {
  background: var(--black);
}

.card-icon {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 999px;
  background: var(--black--tl);
}
.card-icon img {
  width: 24px;
  height: 24px;
  filter: var(--icon-black);
}
.card-icon--light {
  background: var(--white--tl);
}
.card-icon--light img {
  filter: var(--icon-white);
}

.section-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black--light);
  text-transform: uppercase;
  letter-spacing: 3%;
  margin-left: 0.25rem;
}

.status {
  position: relative;
  border-radius: 999px;
  background: var(--vanilla);
  color: var(--black);
  border-left: 6px solid var(--black--tl);
  border-right: 6px solid transparent;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  text-align: center;
}
.status::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.status--small {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
}
.status--medium {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
}
.status--large {
  font-size: 1rem;
  padding: 1rem 1.25rem;
}
.status--vanilla {
  background: var(--vanilla--dark);
}
.status--yellow {
  background: var(--yellow);
}
.status--orange {
  background: var(--orange);
  color: var(--white);
}
.status--red {
  background: var(--red);
  color: var(--white);
}
.status--green {
  background: var(--green);
  color: var(--white);
}
.status--brown {
  background: var(--brown);
  color: var(--white);
}
.status--grey {
  background: var(--black--light);
  color: var(--white);
}
.status--black {
  background: var(--black);
  color: var(--white);
}

/*  */
/*  */
/*  */
.db-shine {
  position: relative;
}

.db-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
.db-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/*  */
/*  */
/*  */
.db-section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black--light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: none;
}

@media (min-width: 768px) {
  .db-section-label {
    display: block;
  }
}
/*  */
/*  */
/*  */
.db-welcome {
  display: flex;
  align-items: center;
  width: fit-content;
}

.db-welcome__initials {
  width: clamp(50px, 12vw, 60px);
  height: clamp(50px, 12vw, 60px);
  aspect-ratio: 1/1;
  border-radius: 999px;
  background-color: var(--red);
  display: grid;
  place-items: center;
  margin-right: clamp(0.5rem, 2vw, 1rem);
}

.db-welcome__initials__label {
  color: var(--white);
  font-size: 1.6em;
  font-weight: 600;
  text-align: center;
}

.db-welcome__content__message {
  display: block;
  margin-bottom: 0.25rem;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--black--light);
}

.db-welcome__content__name {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 600;
  color: var(--black);
}

/*  */
/*  */
/*  */
.db-date {
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--vanilla);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
}

.db-date__day {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--red);
  margin-right: 0.5rem;
}

.db-date__details__month {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--black);
}

.db-date__details__year {
  display: block;
  font-size: 0.9rem;
  color: var(--black--light);
}

/*  */
/*  */
/*  */
.db-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.db-actions__card {
  display: flex;
  align-items: center;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 20px;
}

.db-actions__card:hover {
  translate: 0 -3px;
  transition: all 0.3s ease;
}
.db-actions__card:hover .db-actions__card__arrow__img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.db-actions__card--green {
  background: var(--green);
}

.db-actions__card--brown {
  background: var(--brown);
}

.db-actions__card__icon {
  display: grid;
  place-items: center;
  width: clamp(50px, 12vw, 60px);
  height: clamp(50px, 12vw, 60px);
  aspect-ratio: 1/1;
  margin-right: 1.5rem;
  background: var(--white--tl);
  border-radius: 12px;
}

.db-actions__card__icon__img {
  width: clamp(24px, 5vw, 28px);
  height: clamp(24px, 5vw, 28px);
  filter: var(--icon-white);
}

.db-actions__card__content__title {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 600;
  color: var(--white);
}

.db-actions__card__content__desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-top: clamp(0rem, 2vw, 0.5rem);
}

.db-actions__card__arrow {
  margin-left: auto;
}

.db-actions__card__arrow__img {
  width: clamp(22px, 4vw, 28px);
  height: clamp(22px, 4vw, 28px);
  filter: var(--icon-white);
  opacity: 0.6;
}

/*  */
/*  */
/*  */
.db-access {
  margin-bottom: 2rem;
}

.db-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 150px));
  gap: 1rem;
}
@media (max-width: 480px) {
  .db-access-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.db-access-card {
  background: var(--grey--light);
  padding: 0.5rem;
  border-radius: 12px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.db-access-card:nth-child(4n+1) {
  background: var(--yellow);
}

.db-access-card:nth-child(4n+2) {
  background: var(--pistachio);
}

.db-access-card:nth-child(4n+3) {
  background: var(--vanilla--dark);
}

.db-access-card:nth-child(4n) {
  background: var(--vanilla);
}

.db-access-card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  background: var(--white--tl);
  border-radius: 12px;
}

.db-access-card__icon__img {
  width: 24px;
  height: 24px;
  filter: var(--icon-black);
}

.db-access-card__label {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
}

/*  */
/*  */
/*  */
.db-manage {
  margin-bottom: 2rem;
}

.db-manage-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.db-manage-card {
  background: var(--white);
  padding: clamp(1rem, 2.5vw, 1.25rem);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.db-manage-card--orange {
  background: var(--orange);
}

.db-manage-card--grey {
  background: var(--black--light);
}

.db-manage-card--red {
  background: var(--red);
}

.db-manage-card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  margin-right: clamp(0.5rem, 2vw, 1rem);
  background: var(--white--tl);
  border-radius: 12px;
}

.db-manage-card__icon__img {
  width: 24px;
  height: 24px;
  filter: var(--icon-white);
}

.db-manage-card__label {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--white);
  margin-top: clamp(0rem, 2vw, 0.5rem);
}

.db-manage-card__desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-top: clamp(0.25rem, 1.5vw, 0.5rem);
}

/*  */
/*  */
/*  */
.db-bookings {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.db-bookings-card {
  flex: 1;
  background: var(--white);
  border: 2px solid var(--vanilla--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.db-bookings-card__head {
  padding: clamp(0.75rem, 2vw, 1rem);
  border-bottom: 2px solid var(--vanilla--light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.db-bookings-card__head__label {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--brown);
}

.db-bookings-card__head__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
}

.db-bookings-card__body {
  padding: clamp(0.75rem, 2vw, 1rem);
  flex: 1;
}

/*  */
/*  */
/*  */
.db-bookings-card__body__empty {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.db-bookings-card__body__empty__icon {
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  border-radius: 20px;
  background: var(--vanilla);
  display: grid;
  place-items: center;
  position: relative;
}

.db-bookings-card__body__empty__icon::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  bottom: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  pointer-events: none;
}

.db-bookings-card__body__empty__icon__img {
  width: 50%;
  height: auto;
  filter: var(--icon-red);
}

.db-bookings-card__body__empty__content__title {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.db-bookings-card__body__empty__content__desc {
  font-size: 0.8rem;
  color: var(--black--light);
  margin-bottom: 1rem;
  display: block;
}

/*  */
/*  */
/*  */
.db-bookings-card__body__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.db-bookings-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: var(--vanilla);
  border-radius: 12px;
}

.db-bookings-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: clamp(50px, 12vw, 60px);
  padding: 0.5rem;
  background: var(--red--tl);
  border-radius: 8px;
}

.db-bookings-item__date__day {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}

.db-bookings-item__date__month {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.db-bookings-item__content {
  flex: 1;
  min-width: 0;
}

.db-bookings-item__content__title {
  display: block;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.db-bookings-item__content__time {
  display: block;
  font-size: 0.8rem;
  color: var(--black--light);
  margin-bottom: 0.25rem;
}

.db-bookings-item__content__location {
  display: block;
  font-size: 0.75rem;
  color: var(--black--light);
}

.db-bookings-item__arrow {
  margin-left: auto;
}

.db-bookings-item__arrow__img {
  width: 22px;
  height: 22px;
  filter: var(--icon-brown);
}

/*  */
/*  */
/*  */
@media (min-width: 768px) {
  .db-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 2rem;
    grid-template-areas: "db-access db-bookings" "db-manage db-bookings";
  }
  .db-access {
    grid-area: db-access;
  }
  .db-bookings {
    grid-area: db-bookings;
  }
  .db-manage {
    grid-area: db-manage;
  }
  .db-access,
  .db-manage,
  .db-bookings {
    margin-bottom: 0;
  }
}
.login-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 90%;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.login-container .login-logo {
  height: auto;
  width: 60%;
}
@media (min-width: 768px) {
  .login-container {
    width: 480px;
  }
}

.admin-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
.admin-links .admin-links__item {
  background: var(--vanilla);
  padding: 0.5rem;
  border-radius: 12px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.admin-links .admin-links__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.admin-links .admin-links__item__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  background: var(--red--tl);
  border-radius: 12px;
}
.admin-links .admin-links__item__icon__img {
  width: 24px;
  height: 24px;
  filter: var(--icon-red);
}
.admin-links .admin-links__item__label {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
}
.admin-links .admin-links__item__desc {
  text-align: center;
  color: var(--brown);
  font-size: 0.75rem;
}

.admin-links--second-row .admin-links__item {
  background: var(--vanilla--light);
}

.event-private-badge {
  margin-left: 0.375rem;
  font-size: 0.75em;
  font-weight: 600;
  color: var(--grey--dark, #6c757d);
  background: var(--grey--light, #e9ecef);
  border-radius: var(--radius-100, 4px);
  padding: 1px 6px;
}

.log-detail__pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.85rem;
  background: var(--grey--light, #f5f5f5);
  border: 1px solid var(--border-colour, #dee2e6);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
}
.log-detail__pre--exception {
  background: #fff5f5;
  border-color: #f5c2c7;
  color: #842029;
}
.log-detail__props {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.log-detail__props tr {
  border-bottom: 1px solid var(--border-colour, #dee2e6);
}
.log-detail__props tr:last-child {
  border-bottom: none;
}
.log-detail__props-key {
  width: 35%;
  padding: 0.35rem 0.6rem 0.35rem 0;
  font-weight: 600;
  color: var(--black);
  vertical-align: top;
  white-space: nowrap;
}
.log-detail__props-val {
  padding: 0.35rem 0;
  color: var(--black);
  word-break: break-word;
}
.log-detail__props--nested {
  margin: 0.25rem 0;
  border-left: 3px solid var(--border-colour, #dee2e6);
  padding-left: 0.5rem;
}
.log-detail__props--nested .log-detail__props-key {
  font-weight: normal;
  color: var(--grey--dark, #6c757d);
  padding-left: 0.5rem;
}

.log-level {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.log-level--verbose, .log-level--debug {
  background: var(--grey--light, #e9ecef);
  color: var(--grey--dark, #495057);
}
.log-level--information {
  background: #cff4fc;
  color: #055160;
}
.log-level--warning {
  background: #fff3cd;
  color: #664d03;
}
.log-level--error {
  background: #f8d7da;
  color: #842029;
}
.log-level--fatal {
  background: #842029;
  color: #fff;
}

.profile-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.crud-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.data-table-options {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .data-table-options {
    flex-direction: row;
    justify-content: space-between;
  }
  .data-table-options .filter-controls {
    width: auto;
  }
  .data-table-options .checkbox-standalone {
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .data-table-options__dropdown {
    width: auto;
  }
}
.data-table-options__dropdown:last-of-type {
  margin-right: auto;
}

.section-subheading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black--light);
}
.section-subheading--spaced {
  margin-top: 2rem;
}

.form-page-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .form-page-container .breadcrumb,
  .form-page-container .cta-block,
  .form-page-container .divider {
    display: none;
  }
}
@media (min-width: 768px) {
  .form-page-container {
    height: 100%;
  }
}

.form-page-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .form-page-content {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex: 1;
  }
}

.form-container {
  max-width: 1024px;
  flex: 1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.form-section-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.6rem;
}

.form-section-subheading {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black--light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.6rem;
}

.form-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
@media (min-width: 1024px) {
  .form-item {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
}

.form-item-label__desc {
  display: none;
  color: var(--black--light);
  font-size: 0.7rem;
  margin-top: 0.25rem;
  max-width: 160px;
}
@media (min-width: 1024px) {
  .form-item-label__desc {
    display: block;
  }
}
@media (min-width: 1024px) {
  .form-item-label {
    min-width: 160px;
  }
}

.form-cta {
  position: sticky;
  bottom: 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}
.form-cta button,
.form-cta a {
  flex: 1;
}
@media (min-width: 1024px) {
  .form-cta button,
  .form-cta a {
    flex: unset;
  }
}
@media (min-width: 768px) {
  .form-cta {
    position: unset;
    margin-top: auto;
  }
}
@media (min-width: 1024px) {
  .form-cta {
    margin-left: auto;
  }
}

.form-host {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  background: var(--grey--light);
  padding: 0.5rem;
  border-radius: 6px;
}
.form-host__icon {
  width: 28px;
  height: 28px;
  filter: var(--icon-brown);
}
.form-host__label {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--black--light);
}
.form-host__name {
  font-weight: 600;
  color: var(--red);
  font-size: 0.9rem;
  margin-left: 0.25rem;
}

.required {
  position: relative;
}
.required::after {
  content: "*";
  color: var(--red);
  font-size: 1.25rem;
  position: absolute;
  top: -3px;
  right: -10px;
}

.form-item__checkbox-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .form-item__checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.form-item__checkbox-grid--catering {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  .form-item__checkbox-grid--catering {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.form-section-divider {
  padding: 2px;
  background: var(--vanilla--light);
  border-radius: 9999px;
  margin: 1rem 0;
}

.contact-search-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.contact-search-item {
  background: var(--vanilla--light);
  min-height: 40px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
.contact-search-item__name {
  font-weight: 600;
  color: var(--brown);
  flex: 1 1 30%;
}
.contact-search-item__email {
  font-size: 0.9rem;
  color: var(--black--light);
  flex: 1 1 25%;
}
.contact-search-item__company {
  font-size: 0.9rem;
  color: var(--black--light);
  flex: 1 1 20%;
}
.contact-search-item__phone {
  font-size: 0.9rem;
  color: var(--black--light);
  flex: 1 1 15%;
}
.contact-search-item .btn {
  height: 30px;
  font-size: 0.8rem;
  min-width: unset;
  width: auto;
}
@media (max-width: 768px) {
  .contact-search-item {
    height: auto;
    padding: 0.5rem 1rem;
  }
}

.contact-added-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.contact-added-item {
  background: var(--vanilla);
  min-height: 40px;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-added-item__ppe, .contact-added-item__canteen {
  background: var(--white);
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-added-item__info {
  display: grid;
  grid-template-areas: "name email" "company company" "remove remove" "vpa vpa" "canteen canteen";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 30px 30px 30px;
  gap: 0.5rem;
}
.contact-added-item__info__name {
  grid-area: name;
  font-weight: 600;
  color: var(--brown);
}
.contact-added-item__info__email {
  grid-area: email;
  font-weight: 600;
  color: var(--black--light);
}
.contact-added-item__info__company {
  grid-area: company;
  font-weight: 600;
  color: var(--black--light);
}
.contact-added-item__info__vpa {
  grid-area: vpa;
  font-size: 0.8rem;
  height: auto;
}
.contact-added-item__info__canteen {
  grid-area: canteen;
  font-size: 0.8rem;
  height: auto;
}
.contact-added-item__info__remove {
  grid-area: remove;
  font-size: 0.8rem;
  height: auto;
}
@media (min-width: 768px) {
  .contact-added-item__info {
    grid-template-areas: "name email company" "vpa canteen remove";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 30px;
  }
  .contact-added-item__info .btn {
    width: 100%;
  }
}
.contact-added-item__info--contractors {
  grid-template-areas: "name" "remove";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 30px;
}
@media (min-width: 768px) {
  .contact-added-item__info--contractors {
    align-items: center;
    grid-template-areas: "name remove";
    grid-template-columns: 1fr 150px;
    grid-template-rows: 1fr;
  }
}

.form-confirm-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--vanilla);
  border-radius: 8px;
  position: relative;
}
.form-confirm-section__heading {
  font-weight: 600;
  font-size: 1rem;
  color: var(--brown);
}
.form-confirm-section__edit {
  background: var(--vanilla--dark);
  color: var(--white);
  width: fit-content;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 9999px;
  position: absolute;
  right: 1rem;
}

.form-confirm-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .form-confirm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.form-accordion {
  background: var(--vanilla);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-accordion__btn {
  width: 100%;
  height: 40px;
  background: var(--vanilla);
  color: var(--brown);
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}
.form-accordion__btn img {
  height: 30px;
  filter: var(--icon-brown);
}
.form-accordion__title {
  flex: 1;
  text-align: left;
}
.form-accordion__summary {
  background: var(--brown--light);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .form-accordion__summary {
    display: none;
  }
}
.form-accordion .form-item {
  margin: 0.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
}

.form-item__checkbox-grid--two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-info {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black--light);
}

.documents-uploaded-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.documents-uploaded-list__item {
  background: var(--vanilla--light);
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.documents-uploaded-list__item__name {
  font-weight: 600;
  color: var(--brown);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.documents-uploaded-list__item__size {
  background: var(--brown--light);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.documents-uploaded-list__item__cat {
  background: var(--vanilla--dark);
  color: var(--black);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.documents-uploaded-list__item__date {
  color: var(--black--light);
  font-size: 0.75rem;
  white-space: nowrap;
}
.documents-uploaded-list__item__actions {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.documents-uploaded-list__item .btn {
  height: 30px;
  font-size: 0.8rem;
  min-width: unset;
  width: auto;
}
@media (max-width: 768px) {
  .documents-uploaded-list__item {
    min-height: auto;
    padding: 0.5rem 1rem;
  }
  .documents-uploaded-list__item__name {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

.select-room {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  color: var(--brown);
  background: var(--vanilla--light);
  border: var(--vanilla) 2px solid;
  border-radius: 8px;
  padding: 0 0.5rem 0 0;
}
.select-room--disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.select-room .select-room__colour {
  position: absolute;
  right: 0;
  height: 100%;
  width: 6px;
}
.select-room .select-room__checkbox {
  margin: 0.5rem 0.5rem 0 0.5rem;
}
.select-room .select-room__checkbox:checked ~ .select-room {
  background: var(--red);
}
.select-room .select-room__title {
  height: fit-content;
  margin: 0.5rem 0 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--black);
}
.select-room .select-room__desc {
  background: var(--white);
  color: var(--brown);
}
.select-room .select-room__cap {
  background: var(--brown--light);
  color: var(--white);
}
.select-room .select-room__cap img {
  filter: var(--icon-white);
}
.select-room .select-room__cap--none {
  color: var(--red);
  background: var(--red--light);
}
.select-room .select-room__cap--none img {
  filter: var(--icon-red);
}
.select-room .select-room__layout {
  background: var(--orange);
  color: var(--white);
}
.select-room .select-room__layout img {
  filter: var(--icon-white);
}
.select-room .select-room__layout--none {
  color: var(--red);
  background: var(--red--light);
}
.select-room .select-room__layout--none img {
  filter: var(--icon-red);
}
.select-room .select-room__catering {
  background: var(--green);
  color: var(--white);
}
.select-room .select-room__catering img {
  filter: var(--icon-white);
}
.select-room .select-room__catering--none {
  color: var(--red);
  background: var(--red--light);
}
.select-room .select-room__catering--none img {
  filter: var(--icon-red);
}
.select-room__stats {
  flex: 1 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0.5rem 0.5rem 0.5rem;
}
.select-room .select-room__desc,
.select-room .select-room__cap,
.select-room .select-room__layout,
.select-room .select-room__catering {
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.select-room .select-room__desc img,
.select-room .select-room__cap img,
.select-room .select-room__layout img,
.select-room .select-room__catering img {
  width: 0.8rem;
  height: 0.8rem;
}
.select-room--no-room {
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--vanilla);
  border: 2px dashed var(--brown--light);
  border-radius: 8px;
  gap: 0.5rem;
}
.select-room--no-room .select-room__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
}
.select-room--no-room:has(input:checked) {
  background: var(--vanilla--light);
  border-color: var(--brown);
}

.select-room-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.select-room-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.select-room-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0;
  color: var(--brown--light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.select-room-divider::before, .select-room-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--vanilla--dark, #e0d8cc);
}

.form-item--answer {
  flex-wrap: wrap;
}

.form-item-answer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-radio__label {
  font-weight: 600;
  color: var(--brown);
}
.form-radio input {
  width: auto;
  min-height: none;
}

.form-accordion-cta {
  padding: 0.5rem;
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}

.temp-section-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black--light);
}

.temp-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.temp-section-item {
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: var(--grey--light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.data-table tbody tr {
  min-height: 3.5rem;
}
.data-table tbody td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  vertical-align: middle;
}

.schedule-dates {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
.schedule-dates__sep {
  display: none;
}

.schedule-day-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  background-color: var(--vanilla--dark, #f0e8d8);
  color: var(--brown, #5a3e28);
  white-space: nowrap;
}
.schedule-day-badge--single {
  opacity: 0.6;
}

:root {
  --row-h: 56px;
}

* {
  box-sizing: border-box;
}

.utilisation {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  grid-template-columns: 130px 1fr;
  overflow: hidden; /* prevent page-level horizontal scrollbar */
}

.grid-left {
  border-right: 1px solid #ddd;
  background: #fff7f0;
}

.grid-left-header {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-weight: 600;
  color: #6a5b4c;
  border-bottom: 1px solid #ddd;
}

.grid-rows {
  display: grid;
}

.grid-left-row {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.room-name {
  color: #6a5b4c;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grid-right {
  display: grid;
  grid-template-rows: 1fr; /* one child: the scroll container */
  overflow: hidden; /* clamp inner overflow */
}

/* Scroll container holds header + grid, so they scroll together horizontally */
.timeline-scroll {
  display: grid;
  grid-template-rows: var(--header-h, 48px) 1fr;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.timeline-header {
  position: sticky;
  top: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  height: var(--header-h, 48px);
  background: #fff;
  z-index: 5;
  width: var(--timeline-w);
  min-width: var(--timeline-w);
  margin: 0;
}

.timeline-grid {
  position: relative;
  display: grid;
  width: var(--timeline-w);
}

.hour-block {
  position: relative;
  display: inline-block;
}

.hour-label {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: #4f4f4f;
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.minor-ticks {
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #999;
}

.grid-right-row {
  height: 56px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.room-color-key {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* Fill the row vertically with small padding */
.timeline-grid .event-block {
  position: absolute;
  top: 4px;
  bottom: 4px;
  color: #fff;
  border-radius: 6px;
  padding: 6px 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  touch-action: pan-x;
}

.event-title {
  font-size: 12px;
  line-height: 1.2;
}

.event-time {
  font-size: 11px;
  opacity: 0.9;
}

.vline {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.vline.minor {
  background: rgba(0, 0, 0, 0.06);
}

/* Clickable 15-min cells overlayed within each row */
.grid-right-row {
  position: relative;
}

.cell {
  position: absolute;
  top: 0;
  bottom: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.cell:hover {
  background: rgba(79, 140, 255, 0.1);
  outline: 1px solid rgba(79, 140, 255, 0.4);
}

.cell--booked {
  background: rgba(255, 0, 0, 0.2) !important;
  cursor: not-allowed;
}

/* Layout fullscreen: overlay the app content and hide the left menu area */
.utilisation--fullscreen {
  position: fixed;
  inset: 0; /* fill viewport */
  z-index: 1000;
  background: #fff;
  display: flex; /* allow children to size */
  flex-direction: column;
  padding: 12px;
  gap: 12px;
  overflow: hidden; /* no page scrollbars */
}

/* Toolbar stays at natural height */
.utilisation--fullscreen .toolbar {
  flex: 0 0 auto;
}

/* Grid must consume the remaining viewport height */
.utilisation--fullscreen .grid {
  flex: 1 1 auto;
  min-height: 0; /* allow children to compute height correctly */
  grid-template-columns: 0 1fr; /* hide left column in fullscreen */
}

.utilisation--fullscreen .grid-left {
  display: none;
}

/* The scroll container fills the grid cell and becomes the single scroll area */
.utilisation--fullscreen .grid-right {
  overflow: hidden;
}

.utilisation--fullscreen .timeline-scroll {
  height: 100%; /* fill remaining space */
  max-height: 100%;
  overflow-x: auto;
  overflow-y: auto; /* allow vertical scroll when many rooms */
  -webkit-overflow-scrolling: touch;
}

/* Keep header sticky inside the scroll container */
.utilisation--fullscreen .timeline-header {
  position: sticky;
  top: 0;
}

.gatehouse-layout {
  padding: 1rem;
  background: var(--white);
  height: calc(100vh - 2rem);
  margin: 1rem;
  border-radius: 20px;
  overflow: auto;
}

.gatehouse-header {
  margin-bottom: 2rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 0.5rem 1rem;
  align-items: center;
  grid-template-areas: "icon title" "icon desc";
}
.gatehouse-header__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  grid-area: title;
}
.gatehouse-header__desc {
  font-size: 1rem;
  color: var(--white);
  grid-area: desc;
}
.gatehouse-header__icon {
  grid-area: icon;
}

.gatehouse-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gatehouse-toolbar__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gatehouse-toolbar__cta {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .gatehouse-toolbar {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .gatehouse-toolbar__cta {
    flex-direction: row;
    align-items: center;
  }
  .gatehouse-toolbar__search {
    flex: 1;
  }
}

.gatehouse-toolbar__date__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 36px;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--vanilla);
  font-size: 1.1rem;
  cursor: pointer;
}
.gatehouse-toolbar__date__btn--today {
  font-size: 0.8rem;
  font-weight: 600;
}
.gatehouse-toolbar__date__btn--today-active {
  background: #e8f5e9;
  color: #28a745;
}
.gatehouse-toolbar__date__input {
  height: 36px;
  border-radius: 6px;
  padding: 0 8px;
  font-size: 0.9rem;
}

.gatehouse-day-report {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gatehouse-day-report {
    grid-template-columns: 1fr 1fr;
  }
}

.gh-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gh-booking {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.gh-booking__details {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gh-booking__details__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.gh-booking__details__name {
  font-weight: 600;
  font-size: 1.1rem;
}
.gh-booking__details__name span {
  color: var(--brown);
}
.gh-booking__details__host {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
}
.gh-booking__details__host span {
  margin-left: 0.25rem;
  color: var(--brown);
  display: flex;
  align-items: center;
}
.gh-booking__details__host a {
  margin-left: 0.25rem;
  display: flex;
  align-items: center;
  color: var(--red);
}
.gh-booking__details__host .phone-icon {
  width: 16px;
  filter: var(--icon-red);
}
.gh-booking__details__notes {
  padding: 0.5rem;
}
.gh-booking__attendees {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gh-atnd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  flex-wrap: wrap;
}
.gh-atnd__details {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  flex-direction: column;
}
.gh-atnd__details__name {
  font-weight: 600;
}
.gh-atnd__details__company {
  color: var(--brown);
  font-size: 0.85rem;
}
.gh-atnd__details__status {
  width: fit-content;
}
.gh-atnd__details__container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.gh-atnd__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.gh-atnd__actions__status {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.gh-atnd--departed {
  border-left: 4px solid var(--black--light);
}

.gh-atnd--arrived .gh-atnd--induction-invalid {
  border-left: 4px solid var(--orange);
}

.gh-atnd--arrived .gh-atnd--induction-expiring {
  border-left: 4px solid var(--yellow);
}

.gh-atnd--arrived {
  border-left: 4px solid var(--green);
}

.gh-atnd--pending {
  border-left: 4px solid var(--yellow);
}

@media print {
  .header,
  .navigation,
  .footer,
  .report-page-layout__header,
  .report-page-layout__cta,
  .cta-row,
  .button,
  .alert,
  .details__description,
  .details__header,
  .page-type-tag,
  .form-progress,
  .breadcrumb,
  #blazor-error-ui {
    display: none !important;
  }
  @page {
    size: A4 portrait;
    margin: 15mm 12mm;
  }
  body {
    background: #fff !important;
    color: #000 !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11pt;
  }
  .roll-call-print-header {
    display: block !important;
    margin-bottom: 10mm;
    border-bottom: 2px solid #000;
    padding-bottom: 4mm;
  }
  .roll-call-print-header__title {
    display: block;
    font-size: 22pt;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .roll-call-print-header__meta {
    display: block;
    font-size: 10pt;
    color: #333;
    margin-top: 2mm;
  }
  .roll-call-print-header__badge {
    display: inline-block;
    margin-top: 3mm;
    padding: 2mm 5mm;
    border: 2px solid #000;
    font-size: 12pt;
    font-weight: bold;
    border-radius: 3mm;
  }
  .data-table {
    width: 100% !important;
    gap: 0 !important;
    page-break-inside: auto;
  }
  .data-table__row--header {
    display: flex !important;
    background: #000 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    border-radius: 0 !important;
  }
  .data-table__row--header .data-table__row__cell {
    color: #fff !important;
    font-size: 12pt !important;
    font-weight: bold !important;
    border: 1px solid #000 !important;
  }
  .data-table__row {
    display: flex !important;
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  .data-table__row:nth-child(even) {
    background: #f0f0f0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .data-table__row__cell {
    flex: 1 !important;
    font-size: 11pt !important;
    padding: 3mm 4mm !important;
    border-right: 1px solid #ccc !important;
    border-bottom: none !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    box-shadow: none !important;
    background: none !important;
    color: #000 !important;
  }
  .data-table__row__cell .cell-label {
    display: none !important;
  }
  .data-table th,
  table th {
    background: #000 !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    font-size: 12pt;
    font-weight: bold;
    padding: 3mm 4mm;
    text-align: left;
    border: 1px solid #000;
  }
  .data-table td,
  table td {
    font-size: 11pt;
    padding: 3mm 4mm;
    border: 1px solid #555;
    vertical-align: middle;
  }
  .data-table tr:nth-child(even) td,
  table tr:nth-child(even) td {
    background: #f0f0f0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  tr {
    page-break-inside: avoid;
  }
  .status-badge {
    border: 1px solid #000 !important;
    background: none !important;
    color: #000 !important;
    font-weight: bold;
  }
  .report-page-layout,
  .page-content,
  .container,
  main {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border: none !important;
  }
}
.roll-call-print-header {
  display: none;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.metric-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.metric-card__value {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 0.8;
}
.metric-card__label {
  font-size: 1rem;
  font-weight: 600;
}
.metric-card__subtitle {
  font-size: 0.8rem;
}

.metric-card .metric-card__label,
.metric-card .metric-card__value,
.metric-card .metric-card__subtitle {
  color: var(--black);
}

.metric-card--text-light .metric-card__label,
.metric-card--text-light .metric-card__value,
.metric-card--text-light .metric-card__subtitle {
  color: var(--white);
}

.pickup-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.pickup-filters__group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pickup-filters__buttons {
  display: flex;
  gap: 0.375rem;
}
.pickup-filters__btn {
  opacity: 0.4;
  transition: 0.2s ease-in-out;
}
.pickup-filters__btn:hover {
  opacity: 1;
}
.pickup-filters__btn--active {
  opacity: 1;
}

@media (max-width: 768px) {
  .pickup-filters__group--ppe {
    display: none;
  }
}
.eq-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eq-contact-item {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 4px solid var(--yellow);
}
.eq-contact-item--complete {
  border-left-color: var(--green);
}
.eq-contact-item__name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.eq-contact-item__name__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
}
.eq-contact-item__booking {
  background: var(--white);
  padding: 0.5rem;
}
.eq-contact-item__booking__name {
  font-size: 0.8125rem;
  font-weight: 600;
}
.eq-contact-item__booking__name span {
  margin-left: 0.25rem;
  color: var(--brown);
}
.eq-contact-item__booking__host {
  display: none;
}
.eq-contact-item__booking__day {
  display: none;
}
.eq-contact-item__ppe {
  display: none;
}
.eq-contact-item__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .eq-contact-item {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    flex-direction: row;
    align-items: stretch;
  }
  .eq-contact-item__name {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 160px;
    flex-shrink: 0;
  }
  .eq-contact-item__booking, .eq-contact-item__ppe {
    flex: 1;
    padding: 0.5rem 0.75rem;
    display: grid;
    gap: 0.5rem 0.25rem;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .eq-contact-item__booking {
    background: var(--vanilla--light);
    flex: 0 1 300px;
    grid-template-areas: "name name" "host host";
  }
  .eq-contact-item__booking__name {
    grid-area: name;
  }
  .eq-contact-item__booking__host {
    grid-area: host;
    display: flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 600;
  }
  .eq-contact-item__booking__host span {
    margin-left: 0.25rem;
    color: var(--brown);
    display: flex;
    align-items: center;
  }
  .eq-contact-item__booking__host a {
    margin-left: 0.25rem;
    display: flex;
    align-items: center;
    color: var(--red);
  }
  .eq-contact-item__booking__host .phone-icon {
    width: 16px;
    filter: var(--icon-red);
  }
  .eq-contact-item__booking__day {
    grid-area: day;
    display: block;
    font-size: 0.75rem;
    color: var(--red);
    font-weight: 600;
  }
  .eq-contact-item__ppe {
    background: var(--white);
    grid-template-areas: "label locker" "items items";
  }
  .eq-contact-item__ppe__label {
    grid-area: label;
    font-size: 0.8125rem;
    font-weight: 600;
  }
  .eq-contact-item__ppe__locker {
    grid-area: locker;
    font-size: 0.8125rem;
    color: var(--brown);
    font-weight: 600;
  }
  .eq-contact-item__ppe__items {
    grid-area: items;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
  }
  .eq-contact-item__actions {
    flex-shrink: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    min-width: 130px;
    margin-left: auto;
  }
}
