@charset "UTF-8";
/* ======================================
   Sass modules
   ====================================== */
/* Foundation */
:root {
  /* Palette */
  --palette-brand-50: #fef2f2;
  --palette-brand-100: #fee2e2;
  --palette-brand-500: #ef4444;
  --palette-brand-600: #dc2626;
  --palette-brand-700: #b91c1c;
  --palette-blue-50: #f0f9ff;
  --palette-blue-100: #e0f2fe;
  --palette-blue-500: #1e40af;
  --palette-blue-700: #1e3a8a;
  --palette-neutral-0: #ffffff;
  --palette-neutral-50: #fafafa;
  --palette-neutral-100: #f1f5f9;
  --palette-neutral-200: #e2e8f0;
  --palette-neutral-300: #cbd5e1;
  --palette-neutral-400: #94a3b8;
  --palette-neutral-500: #64748b;
  --palette-neutral-600: #475569;
  --palette-neutral-700: #334155;
  --palette-neutral-800: #1e293b;
  --palette-neutral-900: #0f172a;
  --palette-green-100: #dcfce7;
  --palette-green-500: #10b981;
  --palette-red-100: #fff2f0;
  --palette-red-500: #d6443c;
  --palette-red-700: #b00b12;
  --palette-yellow-100: #fef9c3;
  --palette-yellow-500: #eab308;
  /* Semantic (UI references semantic only) */
  --color-primary-50: var(--palette-brand-50);
  --color-primary-100: var(--palette-brand-100);
  --color-primary-500: var(--palette-brand-500);
  --color-primary-600: var(--palette-brand-600);
  --color-primary-700: var(--palette-brand-700);
  --color-secondary-50: var(--palette-blue-50);
  --color-secondary-100: var(--palette-blue-100);
  --color-secondary-500: var(--palette-blue-500);
  --color-secondary-700: var(--palette-blue-700);
  --color-neutral-0: var(--palette-neutral-0);
  --color-neutral-50: var(--palette-neutral-50);
  --color-neutral-100: var(--palette-neutral-100);
  --color-neutral-200: var(--palette-neutral-200);
  --color-neutral-300: var(--palette-neutral-300);
  --color-neutral-400: var(--palette-neutral-400);
  --color-neutral-500: var(--palette-neutral-500);
  --color-neutral-600: var(--palette-neutral-600);
  --color-neutral-700: var(--palette-neutral-700);
  --color-neutral-800: var(--palette-neutral-800);
  --color-neutral-900: var(--palette-neutral-900);
  --color-success-100: var(--palette-green-100);
  --color-success-500: var(--palette-green-500);
  --color-danger-100: var(--palette-red-100);
  --color-danger-500: var(--palette-red-500);
  --color-danger-700: var(--palette-red-700);
  --color-warning-100: var(--palette-yellow-100);
  --color-warning-500: var(--palette-yellow-500);
  --color-bg: var(--palette-neutral-50);
  --color-surface-1: var(--palette-neutral-0);
  --color-surface-2: var(--palette-neutral-50);
  --color-text: var(--palette-neutral-900);
  --color-text-muted: var(--palette-neutral-500);
  --color-border: var(--palette-neutral-200);
  --color-border-strong: var(--palette-neutral-300);
  --color-primary: var(--palette-brand-600);
  --color-primary-hover: var(--palette-brand-700);
  --color-primary-contrast: var(--palette-neutral-0);
  --color-danger: var(--palette-red-500);
  --color-danger-contrast: var(--palette-neutral-0);
  --color-focus-ring: var(--palette-brand-500);
  /* Space */
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  /* Radius */
  --radius-0: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 15px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.12);
  /* z-index */
  --z-base: 0;
  --z-dropdown: 100;
  --z-modal: 1100;
  --z-toast: 1200;
  /* Typography */
  --font-family-base: "Noto Sans JP", sans-serif;
  --text-xxs: 10px;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --line-height-none: 1;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;
  /* duration */
  --anim-fast: 0.15s;
  --anim-base: 0.25s;
  --anim-slow: 0.4s;
  /* easing */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-emphasized: cubic-bezier(0.2, 0, 0, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html, body {
  height: 100%;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--text--md);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: var(--line-height-normal);
}

body.is-modal-open {
  overflow: hidden;
}

.asc:after {
  content: " ↓";
}

.desc:after {
  content: " ↑";
}

/* Layout */
.l-main-container {
  padding-bottom: 3rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.l-sidebar {
  background-color: var(--color-neutral-50);
  border-right: 1px solid var(--color-neutral-200);
  color: var(--color-neutral-700);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
  overflow: hidden;
  flex-direction: column;
  width: 15rem;
  height: 100%;
  display: flex;
  z-index: 20;
  top: var(--space-0);
  left: var(--space-0);
  position: fixed;
  transition: width var(--anim-base) ease-in-out;
}
.l-sidebar__header {
  background: linear-gradient(to right, var(--color-primary-600), var(--color-primary-500));
  color: var(--color-neutral-0);
  padding: var(--space-4);
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  height: 4rem;
  display: flex;
}
.l-sidebar__title {
  color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: var(--line-height-relaxed);
  white-space: nowrap;
}
.l-sidebar__title--abbr {
  display: none;
}
.l-sidebar__toggle-btn {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
  padding: 0.25rem;
  border-radius: var(--radius-md);
}
@media (hover: hover) and (pointer: fine) {
  .l-sidebar__toggle-btn:hover, .l-sidebar__toggle-btn:focus, .l-sidebar__toggle-btn:focus-visible {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.l-sidebar__item {
  color: var(--color-neutral-800);
  font-weight: 500;
  border-left: 4px solid transparent;
  padding: var(--space-3) var(--space-4);
  align-items: center;
  display: flex;
}
@media (hover: hover) and (pointer: fine) {
  .l-sidebar__item:hover, .l-sidebar__item:focus, .l-sidebar__item:focus-visible {
    background-color: var(--color-neutral-100);
    color: var(--color-primary-600);
  }
  .l-sidebar__item:hover .l-sidebar__icon, .l-sidebar__item:focus .l-sidebar__icon, .l-sidebar__item:focus-visible .l-sidebar__icon {
    color: var(--color-primary-500);
  }
}
.l-sidebar__item.is-active {
  background-color: var(--color-neutral-0);
  color: var(--color-neutral-800);
  border-left-color: var(--color-primary-500);
  box-shadow: var(--shadow-sm);
}
.l-sidebar__item.is-active .l-sidebar__icon {
  color: var(--color-primary-500);
}
.l-sidebar__text {
  font-size: var(--text-sm);
  line-height: var(--line-height-normal);
  white-space: nowrap;
  margin-left: var(--space-4);
}
.l-sidebar__icon {
  color: var(--color-neutral-400);
  justify-content: center;
  min-width: 24px;
  display: flex;
}
.l-sidebar__item.is-active .l-sidebar__icon {
  color: var(--color-primary-500);
}
.l-sidebar__footer {
  background-color: var(--color-neutral-100);
  border-top: 1px solid var(--color-neutral-200);
  padding: var(--space-4);
}
.l-sidebar__footer-inner {
  padding: var(--space-2);
  border-radius: 0.5rem;
  gap: 0.75rem;
  align-items: center;
  cursor: pointer;
  display: flex;
}
@media (hover: hover) and (pointer: fine) {
  .l-sidebar__footer-inner:hover, .l-sidebar__footer-inner:focus, .l-sidebar__footer-inner:focus-visible {
    background-color: var(--color-neutral-0);
  }
}
.l-sidebar__footer-logout-icon {
  color: var(--color-primary-600);
  background-color: var(--color-primary-100);
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: var(--space-8);
  height: var(--space-8);
  display: flex;
}
.l-sidebar__footer-logout {
  color: var(--color-neutral-600);
  font-size: var(--text-xs);
  line-height: var(--line-height-tight);
  gap: 0.25rem;
  align-items: center;
  display: flex;
}
.l-sidebar__footer-logout-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.is-sidebar-closed .l-sidebar__text, .is-sidebar-closed .l-sidebar__title {
  display: none;
}
.is-sidebar-closed .l-sidebar__title--abbr {
  display: block;
}
.is-sidebar-closed .l-sidebar__icon {
  margin: 0 auto;
}

.l-top-nav {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  overflow-y: auto;
  flex: 1 1 0%;
}

.l-footer__copyright {
  color: rgb(163, 163, 163, var(--tw-text-opacity, 1));
  font-size: var(--text-xs);
  line-height: var(--line-height-tight);
}

.l-input-grid {
  display: grid;
  row-gap: var(--space-6);
  -moz-column-gap: var(--space-8);
       column-gap: var(--space-8);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Component */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2); /* Added gap from edit.php */
  padding: var(--space-3) var(--space-4);
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--anim-base);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
}
.c-btn--xs {
  padding: var(--space-2);
  font-size: var(--text-xs);
}

/* Primary */
.c-btn--primary {
  background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
  color: var(--color-neutral-0);
  border: none;
  box-shadow: 0 2px 4px rgb(var(--color-focus-ring)/20%);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--primary:hover, .c-btn--primary:focus, .c-btn--primary:focus-visible {
    background: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-primary-700) 100%);
    box-shadow: 0 4px 8px rgb(var(--color-focus-ring)/30%);
  }
}

/* secondary */
.c-btn--secondary {
  background-color: var(--color-secondary-500);
  color: var(--color-neutral-0);
  box-shadow: 0 2px 4px rgb(var(--color-secondary-500)/2%);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--secondary:hover, .c-btn--secondary:focus, .c-btn--secondary:focus-visible {
    background-color: var(--color-secondary-700);
  }
}

/* neutral */
.c-btn--neutral-0 {
  background-color: var(--color-neutral-0);
  border: 1px solid var(--color-neutral-100);
  color: var(--color-neutral-900);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--neutral-0:hover, .c-btn--neutral-0:focus, .c-btn--neutral-0:focus-visible {
    background-color: var(--color-neutral-50);
  }
}

.c-btn--neutral {
  background-color: var(--color-neutral-100);
  border: 1px solid var(--color-neutral-200);
  color: var(--color-neutral-900);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--neutral:hover, .c-btn--neutral:focus, .c-btn--neutral:focus-visible {
    background-color: var(--color-neutral-50);
  }
}

/* Danger */
.c-btn--danger {
  background-color: var(--color-danger-500);
  color: var(--color-neutral-0);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--danger:hover, .c-btn--danger:focus, .c-btn--danger:focus-visible {
    background-color: var(--color-danger-700);
  }
}

.c-card {
  background-color: var(--color-neutral-0);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.c-card__header {
  background-color: var(--color-neutral-0);
  border-bottom: 1px solid var(--color-neutral-200);
  border-top: 3px solid var(--color-primary-500);
  border-left: none;
  padding: var(--space-5) var(--space-6);
}
.c-card__bottom {
  padding: var(--space-4) var(--space-8);
  background-color: var(--color-neutral-50);
  border-top: 1px solid var(--color-neutral-200);
}

.c-card-gray {
  background-color: var(--color-neutral-50);
  border-color: var(--color-neutral-200);
  border-width: 1px;
  border-radius: 0.5rem;
}

.c-section {
  background-color: var(--color-neutral-0);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.c-section__header {
  background-color: var(--color-neutral-0);
  border-bottom: 1px solid var(--color-neutral-200);
  border-top: 3px solid var(--color-primary-500);
  border-left: none;
  padding: var(--space-5) var(--space-6);
}
.c-section__title {
  color: var(--color-primary-500);
  font-weight: 700;
  font-size: var(--text-md);
  margin: 0;
}

.c-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

.c-label-unit {
  color: var(--color-neutral-600);
  font-weight: 400;
  font-size: var(--text-xs);
  margin-left: var(--space-1);
}

.c-link {
  color: var(--color-primary-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color var(--anim-base);
}
@media (hover: hover) and (pointer: fine) {
  .c-link:hover, .c-link:focus, .c-link:focus-visible {
    color: var(--color-primary-700);
  }
}

.c-link:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

/* --- Forms & Inputs --- */
.c-form__container {
  display: grid;
  padding: var(--space-6) var(--space-6) var(--space-10);
  row-gap: var(--space-6);
  -moz-column-gap: var(--space-8);
       column-gap: var(--space-8);
}
.c-form__container--tight {
  padding: var(--space-4) var(--space-6);
  row-gap: var(--space-4);
  -moz-column-gap: var(--space-6);
       column-gap: var(--space-6);
}
.c-form__container--grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.c-form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.c-form .error-message {
  font-size: var(--text-sm);
  color: var(--color-danger);
  margin-top: var(--space-2);
}

.c-input,
.c-select,
.c-textarea {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  background-color: var(--color-neutral-0);
  transition: all var(--anim-base);
  font-size: var(--text-md);
  color: var(--color-text);
}
.c-input:focus,
.c-select:focus,
.c-textarea:focus {
  outline: none;
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px var(--color-primary-50);
}

.c-form__container--tight .c-input, .c-form__container--tight .c-select, .c-form__container--tight .c-textarea {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
}

.c-input::-moz-placeholder {
  color: var(--color-neutral-300);
}

.c-input::placeholder {
  color: var(--color-neutral-300);
}

.c-input--pl-bold::-moz-placeholder {
  color: var(--color-neutral-400);
}

.c-input--pl-bold::placeholder {
  color: var(--color-neutral-400);
}

.c-input-unit-group {
  position: relative;
  display: flex;
  align-items: center;
}
.c-input-unit-group > div {
  width: 100%;
}
.c-input-unit-group .c-input {
  padding-right: var(--space-10);
  text-align: right;
}

.c-input-unit {
  position: absolute;
  right: var(--space-3);
  color: var(--color-neutral-600);
  font-size: var(--text-sm);
  font-weight: 700;
  pointer-events: none;
}

.c-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--color-text);
}

.c-checkbox {
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-sm);
  accent-color: var(--color-primary-500);
}

/* File Upload */
.c-file-upload {
  background-color: var(--color-neutral-50);
  border: 2px dashed var(--color-neutral-300);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: all var(--anim-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-neutral-600);
  height: 140px;
}
@media (hover: hover) and (pointer: fine) {
  .c-file-upload:hover, .c-file-upload:focus, .c-file-upload:focus-visible {
    border-color: var(--color-primary-500);
    background-color: var(--color-primary-50);
    color: var(--color-primary-700);
  }
  .c-file-upload:hover .c-icon, .c-file-upload:focus .c-icon, .c-file-upload:focus-visible .c-icon {
    color: var(--color-primary-600);
  }
}
.c-file-upload.is-dragover {
  border-color: var(--color-primary-500);
  background-color: var(--color-primary-50);
  color: var(--color-primary-700);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary-500) 20%, transparent);
}
.c-file-upload__clear {
  color: var(--color-primary-600);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color var(--anim-base);
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .c-file-upload__clear:hover, .c-file-upload__clear:focus, .c-file-upload__clear:focus-visible {
    color: var(--color-primary-700);
  }
}

.c-file-upload__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.c-file-upload__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  z-index: 0;
  pointer-events: none;
}

.c-file-upload__filename {
  color: var(--color-neutral-600);
  font-size: var(--text-xxs);
  line-height: var(--line-height-normal);
  text-align: center;
}

.c-file-upload.is-locked .c-file-upload__input {
  pointer-events: none;
}

.c-file-upload.is-locked {
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  .c-file-upload.is-locked:hover, .c-file-upload.is-locked:focus, .c-file-upload.is-locked:focus-visible {
    border-color: var(--color-neutral-300);
    background-color: var(--color-neutral-50);
    color: var(--color-neutral-600);
  }
}

.c-search-box {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  background-color: var(--color-neutral-100);
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 2px rgba(15, 23, 42, 0.06);
}
.c-search-box__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.c-search-box__input {
  width: 100%;
  min-width: 290px;
}
.c-search-box__input-clear {
  position: absolute;
  top: 50%;
  right: var(--space-3);
  transform: translateY(-50%);
}

/* Rich Editor */
.c-rich-editor {
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  background-color: var(--color-neutral-0);
  overflow: hidden;
}
.c-rich-editor .note-editor.note-airframe, .c-rich-editor .note-editor.note-frame {
  border: none;
}
.c-rich-editor .note-toolbar {
  background-color: var(--color-neutral-50);
  border-bottom: 1px solid var(--color-neutral-200);
}
.c-rich-editor__content {
  padding: var(--space-3);
  min-height: 120px;
}
.c-rich-editor .note-btn {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--color-primary-600);
}
@media (hover: hover) and (pointer: fine) {
  .c-rich-editor .note-btn:hover, .c-rich-editor .note-btn:focus, .c-rich-editor .note-btn:focus-visible {
    background-color: var(--color-primary-50);
    border: none;
  }
}
.c-rich-editor .note-btn.active, .c-rich-editor .note-btn.focus {
  border: none !important;
}
@media (hover: hover) and (pointer: fine) {
  .c-rich-editor:hover .note-btn, .c-rich-editor:focus .note-btn, .c-rich-editor:focus-visible .note-btn {
    border: none !important;
  }
}

.c-table-scroll {
  overflow-x: auto;
}

.c-table-scroll > table {
  min-width: 768px;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  background-color: var(--color-surface-1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.c-table--fixed {
  table-layout: fixed;
}
.c-table th, .c-table td {
  padding: var(--space-4) var(--space-3);
  text-align: left;
  border-bottom: 1px solid var(--color-neutral-200);
}
.c-table th {
  background-color: var(--color-neutral-100);
  color: var(--color-primary-500);
  font-weight: 700;
  border-top: 3px solid var(--color-primary-500);
  font-size: var(--text-xs);
}
.c-table tr:nth-child(even) {
  background-color: var(--color-neutral-50);
}
@media (hover: hover) and (pointer: fine) {
  .c-table tr:not(.is_disabled):hover, .c-table tr:not(.is_disabled):focus, .c-table tr:not(.is_disabled):focus-visible {
    background-color: var(--color-primary-50);
  }
}

.c-table tr.is_disabled > td {
  position: relative;
}
.c-table tr.is_disabled > td::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.12);
  pointer-events: none;
}

.c-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: var(--line-height-none);
  white-space: nowrap;
}
.c-badge--primary {
  background-color: var(--color-primary-100);
  color: var(--color-primary-500);
  border: 1px solid var(--color-border);
}
.c-badge--secondary {
  background-color: var(--color-secondary-100);
  color: var(--color-secondary-500);
  border: 1px solid var(--color-border);
}
.c-badge--success {
  background-color: var(--color-success-100);
  color: var(--color-success-500);
  border: 1px solid var(--color-border);
}
.c-badge--warning {
  background-color: var(--color-warning-100);
  color: var(--color-warning-500);
  border: 1px solid var(--color-border);
}
.c-badge--danger {
  background-color: var(--color-danger-100);
  color: var(--color-danger-500);
  border: 1px solid var(--color-border);
}

.c-alert {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 500;
  transition: all var(--anim-base);
  cursor: pointer;
  font-size: var(--text-sm);
}
.c-alert--danger {
  background-color: var(--color-danger-100);
  color: var(--color-danger-700);
  border: 1px solid var(--color-danger-500);
}
.c-alert--success {
  background-color: var(--color-success-100);
  color: var(--color-success-500);
  border: 1px solid var(--color-success-500);
}

.c-icon {
  font-size: 18px;
}
.c-icon--primary {
  color: var(--color-primary-500);
}
.c-icon--gray {
  color: rgb(163, 163, 163, var(--tw-text-opacity, 1));
}

.c-icon-text {
  position: relative;
}
.c-icon-text__icon {
  --tw-text-opacity: 1;
  align-items: center;
  display: flex;
  left: var(--space-0);
  top: var(--space-0);
  bottom: var(--space-0);
  position: absolute;
  pointer-events: none;
}

.c-image {
  width: 100%;
  height: auto;
}
.c-image--zoom {
  cursor: zoom-in;
  display: block;
}
.c-image--full-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-image-thumbnail {
  width: 80px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-image-43 {
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.c-no-image {
  width: 100%;
  height: 100%;
  background-color: var(--color-neutral-300);
  position: relative;
}
.c-no-image::after {
  content: "no-image";
  white-space: nowrap;
  color: var(--color-neutral-0);
  position: absolute;
  font-size: var(--text-xs);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-action-bar {
  position: sticky;
  bottom: var(--space-3);
  z-index: var(--z-dropdown);
  padding: var(--space-4);
  background-color: var(--color-surface-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.c-breadcrumb {
  color: var(--color-neutral-600);
  font-size: var(--text-xs);
  line-height: var(--line-height-tight);
  align-items: center;
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
}

.c-breadcrumb__item {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .c-breadcrumb__item:hover, .c-breadcrumb__item:focus, .c-breadcrumb__item:focus-visible {
    color: var(--color-primary-600);
  }
}

.c-breadcrumb__item--current {
  color: var(--color-neutral-900);
  font-weight: 700;
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  .c-breadcrumb__item--current:hover, .c-breadcrumb__item--current:focus, .c-breadcrumb__item--current:focus-visible {
    color: var(--color-neutral-900);
  }
}

.c-breadcrumb__sep {
  color: var(--color-neutral-500);
}

.c-overlay {
  display: none;
  padding: var(--space-4);
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99;
  inset: var(--space-0);
  position: fixed;
  animation: fadeIn var(--anim-base) ease-out forwards;
  color: var(--color-neutral-0);
  align-items: center;
  justify-content: center;
}

.c-overlay--image {
  z-index: 100;
  cursor: zoom-out;
}

.c-overlay__image {
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background-color: var(--color-neutral-0);
}

.c-overlay__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: none;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-neutral-0);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
  .c-overlay__close:hover, .c-overlay__close:focus, .c-overlay__close:focus-visible {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

.c-overlay__content {
  width: 90vw;
  max-width: 1200px;
  height: 85vh;
}

.c-paginator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background-color: var(--color-neutral-0);
  border: 1px solid var(--color-neutral-100);
  border-radius: var(--radius-md);
}

.c-paginator__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-paginator__meta {
  color: var(--color-neutral-500);
  font-size: var(--text-xs);
  margin: 0;
  white-space: nowrap;
}

.c-paginator__list li a,
.c-paginator__list li span {
  align-items: center;
  background-color: var(--color-neutral-0);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  color: var(--color-neutral-700);
  display: inline-flex;
  font-size: var(--text-xs);
  font-weight: 700;
  justify-content: center;
  min-height: 2rem;
  padding: 0 var(--space-3);
  text-decoration: none;
  cursor: pointer;
}

.c-paginator__list li a:hover {
  background-color: var(--color-neutral-50);
}

.c-paginator__list .current,
.c-paginator__list li.active a,
.c-paginator__list li.active span,
.c-paginator__list li.current a,
.c-paginator__list li.current span {
  background-color: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: var(--color-primary-contrast);
}

.c-paginator__list .disabled span {
  color: var(--color-neutral-400);
  background-color: var(--color-neutral-50);
  border-color: var(--color-neutral-200);
}

/* Project */
.p-companies {
  padding: var(--space-8);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.p-companies__inner {
  max-width: 28rem;
  width: 100%;
}

.p-companies__head {
  color: var(--color-primary-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: var(--space-2);
}

.p-companies__sub {
  color: var(--color-neutral-500);
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: var(--line-height-normal);
}

.p-trucks__header {
  display: grid;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-neutral-200);
}
.p-trucks__header--fixed-aside {
  grid-template-columns: minmax(0, 1fr) max-content;
}

.p-trucks__header-meta {
  display: grid;
  gap: var(--space-2);
}

.p-trucks__header-meta-row {
  align-items: center;
  display: flex;
  gap: var(--space-3);
}

.p-trucks__header-id {
  background-color: var(--color-primary-50);
  border: 1px solid var(--color-primary-100);
  border-radius: var(--radius-md);
  color: var(--color-primary-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-2);
  text-transform: uppercase;
}

.p-trucks__header-title {
  color: var(--color-neutral-900);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: var(--line-height-normal);
}

.p-trucks__header-subtitle {
  color: var(--color-neutral-600);
  font-size: var(--text-lg);
  font-weight: 400;
}

.p-trucks__status {
  align-items: center;
  background-color: var(--color-neutral-0);
  border: 1px solid var(--color-neutral-200);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  padding: var(--space-3);
}

.p-trucks__status-inner {
  align-items: center;
  display: flex;
  gap: var(--space-2);
}

.p-trucks__status-dot {
  background-color: var(--color-success-500);
  border-radius: 9999px;
  flex-shrink: 0;
  height: var(--space-3);
  width: var(--space-3);
}

.p-trucks__status-select {
  background-color: transparent;
  border: 0;
  color: var(--color-neutral-900);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 700;
  outline: none;
  padding: 0;
}

@media (hover: hover) and (pointer: fine) {
  .p-trucks__status-select:hover, .p-trucks__status-select:focus, .p-trucks__status-select:focus-visible {
    box-shadow: none;
  }
}

.p-trucks-images__slot-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3);
}

/* Utility */
.u-sidebar-transition {
  transition: width var(--anim-base) ease-in-out;
}

.u-main-transition {
  transition: margin-left var(--anim-base) ease-in-out;
}

.u-animate-fade-in {
  animation: fadeIn var(--anim-base) ease-out forwards;
}

/* ======================================
   Tailwind layers
   ====================================== */
/* Tailwind layers (utilities are generated from public/××/×.html with prefix u-) */
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.u-sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.u-absolute{
  position: absolute;
}
.u-relative{
  position: relative;
}
.u-inset-0{
  inset: var(--space-0);
}
.u-col-span-3{
  grid-column: span 3 / span 3;
}
.u-mb-0{
  margin-bottom: var(--space-0);
}
.u-mb-1{
  margin-bottom: 0.25rem;
}
.u-mb-4{
  margin-bottom: var(--space-4);
}
.u-mb-6{
  margin-bottom: var(--space-6);
}
.u-mb-8{
  margin-bottom: var(--space-8);
}
.u-ml-20{
  margin-left: 5rem;
}
.u-ml-64{
  margin-left: 16rem;
}
.u-mt-10{
  margin-top: 2.5rem;
}
.u-mt-2{
  margin-top: var(--space-2);
}
.u-mt-3{
  margin-top: 0.75rem;
}
.u-mt-5{
  margin-top: 1.25rem;
}
.u-mt-6{
  margin-top: var(--space-6);
}
.u-mt-8{
  margin-top: var(--space-8);
}
.u-flex{
  display: flex;
}
.u-grid{
  display: grid;
}
.u-hidden{
  display: none;
}
.u-aspect-\[4\/3\]{
  aspect-ratio: 4/3;
}
.u-h-full{
  height: 100%;
}
.u-w-20{
  width: 5rem;
}
.u-w-64{
  width: 16rem;
}
.u-w-full{
  width: 100%;
}
.u-flex-1{
  flex: 1 1 0%;
}
.u-shrink-0{
  flex-shrink: 0;
}
.u-cursor-pointer{
  cursor: pointer;
}
.u-grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.u-grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.u-grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.u-flex-col{
  flex-direction: column;
}
.u-items-center{
  align-items: center;
}
.u-justify-end{
  justify-content: flex-end;
}
.u-justify-center{
  justify-content: center;
}
.u-justify-between{
  justify-content: space-between;
}
.u-gap-1{
  gap: 0.25rem;
}
.u-gap-10{
  gap: 2.5rem;
}
.u-gap-2{
  gap: var(--space-2);
}
.u-gap-3{
  gap: 0.75rem;
}
.u-gap-4{
  gap: var(--space-4);
}
.u-gap-6{
  gap: var(--space-6);
}
.u-gap-x-6{
  -moz-column-gap: var(--space-6);
       column-gap: var(--space-6);
}
.u-gap-y-2{
  row-gap: var(--space-2);
}
.u-justify-self-end{
  justify-self: end;
}
.u-overflow-hidden{
  overflow: hidden;
}
.u-overflow-y-auto{
  overflow-y: auto;
}
.u-rounded{
  border-radius: var(--radius-md);
}
.u-rounded-full{
  border-radius: 9999px;
}
.u-rounded-lg{
  border-radius: 0.5rem;
}
.u-border-2{
  border-width: 2px;
}
.u-border-dashed{
  border-style: dashed;
}
.u-border-neutral-300{
  border-color: var(--color-neutral-300);
}
.u-bg-black\/40{
  background-color: rgb(0 0 0 / 0.4);
}
.u-bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.u-bg-neutral-50{
  background-color: var(--color-neutral-50);
}
.u-bg-neutral-800{
  background-color: var(--color-neutral-800);
}
.u-bg-secondary-500{
  background-color: var(--color-secondary-500);
}
.u-bg-success-500{
  background-color: var(--color-success-500);
}
.u-object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.u-p-0{
  padding: var(--space-0);
}
.u-p-2{
  padding: var(--space-2);
}
.u-p-8{
  padding: var(--space-8);
}
.u-px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.u-px-4{
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}
.u-py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.\!u-pl-10{
  padding-left: 2.5rem !important;
}
.u-pb-3{
  padding-bottom: 0.75rem;
}
.u-pl-10{
  padding-left: 2.5rem;
}
.u-pl-3{
  padding-left: 0.75rem;
}
.u-pl-6{
  padding-left: var(--space-6);
}
.u-pl-8{
  padding-left: var(--space-8);
}
.u-pt-4{
  padding-top: var(--space-4);
}
.u-text-center{
  text-align: center;
}
.u-text-\[10px\]{
  font-size: 10px;
}
.u-text-lg{
  font-size: var(--text-lg);
  line-height: var(--line-height-relaxed);
}
.u-text-sm{
  font-size: var(--text-sm);
  line-height: var(--line-height-normal);
}
.u-text-xs{
  font-size: var(--text-xs);
  line-height: var(--line-height-tight);
}
.u-font-bold{
  font-weight: 700;
}
.u-text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.u-text-neutral-500{
  color: var(--color-neutral-500);
}
.u-text-neutral-600{
  color: var(--color-neutral-600);
}
.u-text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.u-opacity-0{
  opacity: 0;
}
.u-shadow-lg{
  --tw-shadow: var(--shadow-lg);
  --tw-shadow-colored: var(--shadow-lg);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.u-transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.u-transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.u-transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hover\:u-border-primary-500:hover{
  border-color: var(--color-primary-500);
}
.hover\:u-bg-neutral-100:hover{
  background-color: var(--color-neutral-100);
}
.hover\:u-bg-white\/20:hover{
  background-color: rgb(255 255 255 / 0.2);
}
.hover\:u-text-primary-600:hover{
  color: var(--color-primary-600);
}
.u-group:hover .group-hover\:u-opacity-100{
  opacity: 1;
}
@media (min-width: 768px){
  .md\:u-grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 1024px){
  .lg\:u-col-span-2{
    grid-column: span 2 / span 2;
  }
  .lg\:u-col-span-3{
    grid-column: span 3 / span 3;
  }
  .lg\:u-block{
    display: block;
  }
  .lg\:u-grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:u-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:u-grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .lg\:u-flex-row{
    flex-direction: row;
  }
}
