/* ==============================================
   Travel Agency Portal — Shared Styles
   ============================================== */

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Base ── */
body {
  font-family: 'Work Sans', sans-serif;
  min-height: 100vh;
  background: #f8f9ff;
}

/* ── Branding Header ── */
.branding-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-margin {
  padding-bottom: 16px;
}

.logo-bg {
  width: 80px;
  height: 80px;
  background: #101d2d;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.logo-bg img {
  width: 40px;
  height: 40px;
  display: block;
}

.branding-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #101d2d;
  letter-spacing: -0.6px;
}

.branding-subtitle {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #788599;
}

/* ── Card ── */
.card {
  width: 100%;
  background: #fff;
  border: 1px solid #c5c6cd;
  border-radius: 8px;
  padding: 41px 33px 33px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

/* ── Section Heading ── */
.section-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 7.5px;
}

.section-heading-bar {
  width: 4px;
  height: 16px;
  background: #feb23d;
  flex-shrink: 0;
}

.section-heading span {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #101d2d;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* ── Form ── */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 8px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #44474c;
}

/* ── Inputs ── */
.input-wrap {
  position: relative;
}

.input-wrap input {
  width: 100%;
  background: #f8f9ff;
  border: 1px solid #c5c6cd;
  border-radius: 4px;
  padding: 11px 44px 12px 41px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #101d2d;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.input-wrap input::placeholder {
  color: #6b7280;
}

.input-wrap input:focus {
  border-color: #feb23d;
}

.input-wrap input.input-error {
  border-color: #ef4444;
  background: #fff5f5;
}

.input-wrap input.input-success {
  border-color: #10b981;
  background: #f0fdf4;
}

.input-wrap input:disabled {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.input-icon img {
  display: block;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
}

.password-toggle img {
  display: block;
  width: 22px;
  height: 15px;
}

/* ── Submit Button ── */
.submit-btn {
  width: 100%;
  height: 48px;
  background: #feb23d;
  border: none;
  border-radius: 4px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #101d2d;
  letter-spacing: 0.7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  transition: background 0.15s, box-shadow 0.15s;
}

.submit-btn:hover:not(:disabled) {
  background: #f0a52e;
  box-shadow: 0 6px 12px -2px rgba(0,0,0,0.15);
}

.submit-btn:disabled {
  background: #fde68a;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── Secondary Footer ── */
.secondary-footer {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #788599;
  text-align: center;
  padding: 0 24px;
}

/* ── Utility ── */
.hidden {
  display: none !important;
}


/* ==============================================
   LOGIN PAGE
   ============================================== */

/* ── Layout ── */
.page {
  display: flex;
  min-height: 100vh;
}

/* ── Left Panel ── */
.left-panel {
  position: relative;
  width: 450px;
  flex-shrink: 0;
  background-color: #101d2d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  overflow: hidden;
}

.left-bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  overflow: hidden;
}

.left-bg-image img {
  position: absolute;
  top: 0;
  left: -63.78%;
  width: 227.56%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.left-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 29, 45, 0.3);
  backdrop-filter: blur(2px);
}

.left-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.left-heading-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.left-heading-block h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #feb23d;
}

.accent-bar {
  width: 80px;
  height: 4px;
  background: #feb23d;
  border-radius: 12px;
}

/* ── Contact Items ── */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item.address {
  padding-top: 16px;
}

.contact-icon-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-wrap img {
  display: block;
}

.contact-text-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #788599;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.contact-text-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  letter-spacing: 0.7px;
}

.contact-text-address {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 19.5px;
  color: #cbd5e1;
}

/* ── Left Footer ── */
.left-footer {
  position: absolute;
  bottom: 32px;
  left: 48px;
  z-index: 1;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #788599;
}

/* ── Right Panel ── */
.right-panel {
  flex: 1;
  background: #eff4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.form-container {
  width: 100%;
  max-width: 448px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Login Success Banner ── */
.success-banner {
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 4px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.success-banner img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.success-banner span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #047857;
}

/* ── Remember Me ── */
.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid #c5c6cd;
  border-radius: 2px;
  background: #fff;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.remember-me input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #feb23d;
  border-radius: 1px;
}

.remember-me label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #44474c;
  cursor: pointer;
}

/* ── Card Footer ── */
.card-footer {
  border-top: 1px solid #c5c6cd;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.footer-link img {
  width: 16.5px;
  height: 12px;
  display: block;
}

.footer-link-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #101d2d;
}

.footer-link-muted {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #788599;
  text-decoration: underline;
  text-decoration-color: rgba(254, 178, 61, 0.3);
  text-underline-offset: 2px;
}


/* ==============================================
   FORGOT PASSWORD PAGE
   ============================================== */

/* ── Body override for centered layout ── */
body.page-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 48px 64px;
}

body.page-centered .form-container {
  align-items: center;
}

/* ── State Switcher ── */
.state-bar {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.state-bar-label {
  width: 100%;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #788599;
  margin-bottom: 4px;
}

.state-btn {
  padding: 7px 14px;
  border-radius: 6px;
  border: 1px solid #c5c6cd;
  background: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #44474c;
  cursor: pointer;
  transition: all 0.15s;
}

.state-btn:hover {
  border-color: #feb23d;
  color: #101d2d;
}

.state-btn.active {
  background: #101d2d;
  border-color: #101d2d;
  color: #fff;
}

/* ── Banners ── */
.banner {
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
}

.banner-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.banner-icon svg {
  display: block;
}

.banner.success {
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  color: #047857;
}

.banner.success .banner-icon {
  background: #d1fae5;
}

.banner.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.banner.error .banner-icon {
  background: #fecaca;
}

.banner.warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.banner.warning .banner-icon {
  background: #fde68a;
}

/* ── Field Hints ── */
.field-hint {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
}

.field-hint.error  { color: #ef4444; }
.field-hint.success { color: #10b981; }
.field-hint.muted  { color: #788599; }

/* ── Password Strength ── */
.strength-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.strength-segments {
  display: flex;
  gap: 4px;
}

.strength-seg {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: #e2e8f0;
  transition: background 0.2s;
}

.strength-seg.weak   { background: #ef4444; }
.strength-seg.medium { background: #f59e0b; }
.strength-seg.strong { background: #10b981; }

.strength-label          { font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 11px; line-height: 16px; color: #788599; }
.strength-label.weak     { color: #ef4444; }
.strength-label.medium   { color: #f59e0b; }
.strength-label.strong   { color: #10b981; }

/* ── Loading Spinner ── */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(16,29,45,0.25);
  border-top-color: #101d2d;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Full Success State ── */
.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.success-checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-checkmark svg {
  display: block;
}

.success-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #101d2d;
  text-align: center;
}

.success-desc {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #788599;
  text-align: center;
}

.back-to-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 10px 24px;
  border-radius: 4px;
  background: #101d2d;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.15s;
}

.back-to-login:hover {
  background: #1e3048;
}


/* ==============================================
   DASHBOARD PAGE
   ============================================== */

/* ── Base ── */
body.db-page {
  display: flex;
  min-height: 100vh;
  background: #fff;
  padding: 0;
}

/* ── Sidebar ── */
.db-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #101d2d;
  border-right: 1px solid #1e293b;
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
}

/* Logo */
.db-sidebar-logo {
  display: flex;
  align-items: center;
  padding: 24px 16px;
  flex-shrink: 0;
}

.db-logo-icon-wrap {
  width: 80px;
  height: 80px;
  background: #101d2d;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.db-logo-icon-wrap img {
  width: 40px;
  height: 40px;
  display: block;
}

.db-logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 4px;
}

.db-logo-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.db-logo-subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #feb23d;
  letter-spacing: 1.4px;
}

/* Navigation */
.db-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}

.db-nav-section-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  padding: 0 16px 8px;
}

.db-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #94a3b8;
  transition: background 0.15s, color 0.15s;
}

.db-nav-link:hover {
  background: rgba(255,255,255,0.05);
  color: #cbd5e1;
}

.db-nav-link--active {
  background: #172334;
  border-left: 4px solid #feb23d;
  padding-left: 12px;
  color: #feb23d;
  padding-top: 20px;
  padding-bottom: 12px;
}

.db-nav-link--sub {
  padding-left: 43px;
}

.db-nav-link--has-arrow {
  position: relative;
}

.db-nav-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.db-nav-icon--wide {
  width: 24px;
  height: 12px;
}

.db-nav-arrow {
  width: 24px;
  height: 24px;
  display: block;
  margin-left: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.db-nav-arrow--up {
  transform: scaleY(-1);
}

/* Sidebar bottom */
.db-sidebar-bottom {
  border-top: 1px solid #1e293b;
  flex-shrink: 0;
}

.db-nav-link--bottom {
  padding: 16px 24px;
}

.db-nav-link--logout {
  color: #ba1a1a;
}

.db-nav-link--logout:hover {
  background: rgba(186,26,26,0.08);
  color: #ba1a1a;
}

.db-nav-link--sub-active {
  background: #172334;
  color: #feb23d;
}

/* ── Main wrapper ── */
.db-wrapper {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Header ── */
.db-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  flex-shrink: 0;
}

.db-header-greeting {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22.5px;
  color: #0b1c30;
}

.db-header-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.db-header-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.db-header-time-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 16.5px;
  color: #7486a1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.db-header-time-value {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #0b1c30;
  white-space: nowrap;
}

.db-header-divider {
  width: 1px;
  height: 32px;
  background: #e2e8f0;
  margin: 0 8px;
}

.db-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.db-icon-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.db-icon-btn:hover {
  background: #f1f5f9;
}

.db-icon-btn img {
  display: block;
}

.db-header-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 8px;
}

.db-header-user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.db-header-user-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #101d2d;
  text-align: right;
}

.db-header-user-role {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  color: #64748b;
  text-align: right;
}

.db-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  flex-shrink: 0;
}

.db-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Main content ── */
.db-main {
  flex: 1;
  padding: 20px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Page title ── */
.db-page-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.db-page-title-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #101d2d;
  letter-spacing: -0.6px;
}

.db-page-title-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #788599;
}

/* ── Banner ── */
.db-banner {
  position: relative;
  background: #feb23d;
  border-radius: 8px;
  height: 214px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.db-banner-pattern {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60%;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: difference;
}

.db-banner-pattern img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right center;
}

.db-banner-content {
  position: relative;
  z-index: 1;
  padding: 36px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.db-banner-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #0b1c30;
}

.db-banner-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #101d2d;
  letter-spacing: -0.6px;
}

/* ── Cards grid ── */
.db-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 365px));
  justify-content: center;
  gap: 25px;
  width: min(100%, 1145px);
  margin: -84px auto 0;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.db-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 357px;
  box-shadow: 0 4px 2px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.db-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -4px rgba(0,0,0,0.2);
}

.db-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.db-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 76px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15.5px);
  -webkit-backdrop-filter: blur(15.5px);
  border-radius: 10px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
}

.db-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.db-card-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #101d2d;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.db-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.db-card-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #101d2d;
}

.db-card-arrow {
  width: 12px;
  height: 12px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}


/* ==============================================
   NEW FLIGHT BOOKING PAGE
   ============================================== */

body.booking-page {
  background: #f8f9ff;
}

.booking-main {
  background: #f8f9ff;
  padding: 32px 84px 80px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(300px, 0.95fr);
  gap: 24px;
  align-items: start;
  width: 100%;
}

.booking-left,
.booking-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-panel,
.aviation-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.booking-panel-head {
  min-height: 42px;
  background: #101d2d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.booking-panel-head h2,
.fare-summary-card h2,
.aviation-card h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.booking-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 18px;
  padding: 0 8px;
  border-radius: 2px;
  background: #feb23d;
  color: #101d2d;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 9px;
  line-height: 12px;
  text-transform: uppercase;
}

.booking-panel-body {
  padding: 24px;
}

.group-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 24px;
  column-gap: 32px;
}

.group-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.group-info-item span,
.booking-field > span,
.passenger-table th,
.aviation-card h2,
.flight-times span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  color: #7486a1;
  text-transform: uppercase;
}

.group-info-item strong {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #0b1c30;
}

.group-info-item small {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  line-height: 14px;
  color: #94a3b8;
}

.route-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.route-plane {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.accent-text {
  color: #f59e0b !important;
}

.fare-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  padding: 16px;
  background: #f1f5ff;
  border: 1px dashed #cbd5e1;
  border-radius: 3px;
}

.fare-strip div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fare-strip span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  color: #7486a1;
  text-transform: uppercase;
}

.fare-strip strong {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #0b1c30;
}

.booking-controls,
.payment-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, 120px);
  gap: 12px;
  align-items: end;
}

.payment-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field select,
.booking-field input,
.booking-field textarea,
.passenger-table input,
.passenger-table select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
  background: #fff;
  color: #0b1c30;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 20px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.booking-field select,
.booking-field input {
  height: 42px;
  padding: 0 13px;
}

.booking-field input[readonly] {
  background: #f8fafc;
  font-weight: 700;
}

.booking-field textarea {
  min-height: 76px;
  resize: vertical;
  padding: 10px 13px;
}

.booking-field select:focus,
.booking-field input:focus,
.booking-field textarea:focus,
.passenger-table input:focus,
.passenger-table select:focus {
  border-color: #feb23d;
  box-shadow: 0 0 0 2px rgba(254,178,61,0.14);
}

.passenger-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
}

.passenger-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.passenger-table th {
  background: #f1f5ff;
  padding: 14px 8px;
  text-align: left;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
}

.passenger-table td {
  padding: 11px 8px;
  border-top: 1px solid #e2e8f0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #0b1c30;
  vertical-align: middle;
}

.passenger-table input,
.passenger-table select {
  height: 32px;
  padding: 0 8px;
  font-size: 12px;
}

.passenger-table td:first-child,
.passenger-table th:first-child {
  width: 44px;
  text-align: center;
}

.passenger-table td:last-child,
.passenger-table th:last-child {
  text-align: right;
}

.booking-row-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.text-action {
  border: none;
  background: transparent;
  color: #101d2d;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.plus-mark {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}

.booking-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #0b1c30;
}

.booking-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #feb23d;
}

.booking-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-left: 4px solid #ba1a1a;
  background: rgba(255,218,214,0.2);
  color: #ba1a1a;
}

.booking-alert svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-alert p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #93000a;
}

.remarks-field {
  margin-top: 24px;
}

.fare-summary-card {
  background: #101d2d;
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.fare-summary-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fare-summary-card h2 {
  color: #94a3b8;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
}

.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.summary-total span,
.summary-lines span {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #94a3b8;
}

.summary-total div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.summary-total strong {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #feb23d;
}

.summary-total small {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  color: #64748b;
}

.summary-lines {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-lines div,
.summary-net {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.summary-lines strong,
.summary-net strong {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
}

.summary-lines .success-text {
  color: #34d399;
}

.summary-net {
  border-top: 1px solid #1e293b;
  padding-top: 16px;
}

.summary-net span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.summary-net strong {
  font-weight: 700;
  color: #feb23d;
}

.confirm-booking-btn,
.cancel-transaction-btn {
  border: none;
  font-family: 'Work Sans', sans-serif;
  cursor: pointer;
}

.confirm-booking-btn {
  width: 100%;
  height: 52px;
  border-radius: 4px;
  background: #feb23d;
  color: #101d2d;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}

.confirm-booking-btn span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #101d2d;
  color: #feb23d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.cancel-transaction-btn {
  align-self: center;
  background: transparent;
  color: #94a3b8;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

.aviation-card {
  padding: 24px;
  background: #eff6ff;
}

.aviation-card h2 {
  margin-bottom: 20px;
  color: #101d2d;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
}

.flight-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.airline-mark {
  width: 36px;
  height: 36px;
  border: 1px solid #dbe4f0;
  border-radius: 2px;
  background: #fff;
  color: #ba1a1a;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flight-card-row strong {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  color: #0b1c30;
}

.flight-card-row span {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  color: #64748b;
}

.flight-times {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.flight-times strong {
  display: block;
  margin-top: 3px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #0b1c30;
}

@media (max-width: 1280px) {
  .booking-main {
    padding: 28px 32px 64px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-right {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  }
}

@media (max-width: 920px) {
  body.booking-page.db-page {
    display: block;
  }

  body.booking-page .db-sidebar {
    position: static;
    width: 100%;
    height: auto;
  }

  body.booking-page .db-wrapper {
    margin-left: 0;
  }

  body.booking-page .db-header {
    height: auto;
    min-height: 64px;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  body.booking-page .db-header-right {
    width: 100%;
    flex-wrap: wrap;
  }

  .booking-main {
    padding: 24px 16px 48px;
  }

  .group-info-grid,
  .fare-strip,
  .payment-grid,
  .booking-right {
    grid-template-columns: 1fr;
  }

  .booking-controls {
    grid-template-columns: 1fr 1fr;
  }

  .booking-field--agent {
    grid-column: 1 / -1;
  }

  .booking-row-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .booking-controls {
    grid-template-columns: 1fr;
  }

  .booking-panel-body,
  .fare-summary-inner,
  .aviation-card {
    padding: 18px;
  }

  .summary-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-total div {
    align-items: flex-start;
  }
}


/* ==============================================
   BOOKING VIEW RECORD PAGE
   ============================================== */

body.record-page {
  background: #f8f9ff;
}

.record-main {
  background: #f8f9ff;
  padding: 32px;
  gap: 24px;
}

.record-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.record-toolbar {
  min-height: 64px;
  background: #101d2d;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}

.record-toolbar h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #fff;
}

.record-toolbar h2 span {
  color: #94a3b8;
  font-size: 11px;
}

.record-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.record-tab {
  height: 24px;
  border: 0;
  border-radius: 2px;
  padding: 0 12px;
  background: #1e293b;
  color: #94a3b8;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  cursor: pointer;
}

.record-tab--active {
  background: #feb23d;
  color: #101d2d;
}

.record-icon-btn {
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #feb23d;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.record-summary-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1.1fr;
  gap: 16px;
}

.record-card {
  min-height: 136px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.record-logo-card {
  align-items: center;
  gap: 8px;
}

.fj-logo-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e91e63;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fj-logo-mark::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e91e63;
  right: -8px;
  top: 14px;
}

.record-card > span,
.record-details-card span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  color: #7486a1;
  text-transform: uppercase;
}

.record-card strong,
.record-details-card strong {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #0b1c30;
}

.record-logo-card strong {
  font-family: 'Manrope', sans-serif;
  color: #e91e63;
  font-size: 20px;
}

.record-details-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 18px 24px;
}

.record-details-card div:last-child {
  grid-column: 1 / -1;
}

.record-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.record-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 22px;
  border-radius: 999px;
  padding: 0 10px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
}

.record-badge--expired {
  background: #fee2e2;
  color: #ef4444;
}

.record-badge--unpaid {
  background: #dbeafe;
  color: #2563eb;
}

.record-section {
  border: 1px solid #e2e8f0;
  background: #fff;
}

.record-section-head {
  min-height: 44px;
  background: #101d2d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.record-section-head h3,
.record-terms h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.record-section-head h3 span {
  color: #feb23d;
  margin-right: 7px;
}

.record-section-head p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  color: #cbd5e1;
}

.record-table-wrap {
  overflow-x: auto;
}

.record-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.record-table th {
  height: 44px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 24px;
  text-align: left;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  color: #7486a1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.record-table td {
  height: 48px;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 24px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #0b1c30;
}

.record-table td strong {
  font-weight: 700;
}

.sector-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  min-width: 62px;
  padding: 0 8px;
  border-radius: 2px;
  background: #f1f5f9;
  color: #0b1c30;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
}

.record-terms {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.record-terms h3 {
  margin-bottom: 16px;
  color: #101d2d;
  font-size: 12px;
}

.record-terms ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.record-terms li {
  position: relative;
  padding-left: 18px;
  max-width: 780px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #475569;
}

.record-terms li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eab308;
}

@media (max-width: 1180px) {
  .record-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body.record-page.db-page {
    display: block;
  }

  body.record-page .db-sidebar {
    position: static;
    width: 100%;
    height: auto;
  }

  body.record-page .db-wrapper {
    margin-left: 0;
  }

  body.record-page .db-header {
    height: auto;
    min-height: 64px;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  body.record-page .db-header-right {
    width: 100%;
    flex-wrap: wrap;
  }

  .record-main {
    padding: 24px 16px 48px;
  }

  .record-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .record-summary-grid,
  .record-details-card {
    grid-template-columns: 1fr;
  }

  .record-toolbar-actions {
    flex-wrap: wrap;
  }
}


/* ==============================================
   STATEMENT PAGE
   ============================================== */

body.statement-page {
  background: #f8f9ff;
}

.statement-main {
  background: #f8f9ff;
  padding: 32px;
  gap: 24px;
}

.statement-title-row h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #101d2d;
  letter-spacing: -0.6px;
}

.statement-title-row p {
  margin-top: 4px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #788599;
}

.statement-filters {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.statement-filters h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #64748b;
}

.statement-filter-grid {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  flex-wrap: wrap;
}

.statement-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.statement-field--license {
  width: 235px;
}

.statement-field--date,
.statement-field--status {
  width: 209px;
}

.statement-field span,
.statement-search-row span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #44474c;
}

.statement-field input,
.statement-field select,
.statement-search-row input {
  width: 100%;
  height: 42px;
  border: 1px solid #c5c6cd;
  border-radius: 4px;
  background: #f8fafc;
  color: #6b7280;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 20px;
  padding: 0 16px;
  outline: none;
}

.statement-field input:focus,
.statement-field select:focus,
.statement-search-row input:focus {
  border-color: #feb23d;
  box-shadow: 0 0 0 2px rgba(254,178,61,0.14);
}

.statement-search-btn {
  width: max-content;
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: #feb23d;
  color: #291800;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 0 24px;
  cursor: pointer;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.statement-overview {
  display: grid;
  grid-template-columns: 338px repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-height: 153px;
}

.statement-payable-card,
.statement-status-card,
.statement-payment-action {
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.statement-payable-card {
  background: #101d2d;
  border-radius: 4px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.statement-payable-card > span,
.statement-status-card > span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #94a3b8;
}

.statement-payable-card > strong {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #ba1a1a;
}

.statement-payable-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #cbd5e1;
}

.statement-payable-card p span {
  color: #ba1a1a;
}

.statement-status-card,
.statement-payment-action {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.statement-status-card strong {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #101d2d;
}

.statement-pill {
  width: max-content;
  border-radius: 999px;
  background: #dcfce7;
  color: #16a34a !important;
  padding: 4px 10px;
  font-size: 10px !important;
  line-height: 14px !important;
  text-transform: uppercase;
}

.statement-payment-action {
  align-items: flex-end;
  gap: 30px;
}

.statement-mini-actions {
  display: flex;
  gap: 16px;
}

.statement-mini-actions button,
.statement-table-head button {
  border: 0;
  background: transparent;
  color: #101d2d;
  cursor: pointer;
  font-size: 14px;
}

.statement-add-payment {
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: #feb23d;
  color: #101d2d;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 0 24px;
  cursor: pointer;
}

.statement-search-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

.statement-search-row label {
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.statement-search-row input {
  background: #fff;
  padding-right: 44px;
}

.statement-transactions {
  background: #fff;
  border: 1px solid #e2e8f0;
}

.statement-table-head {
  min-height: 64px;
  background: #101d2d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
}

.statement-table-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.statement-table-head h2 span,
.statement-table-head button {
  color: #feb23d;
}

.statement-table-head > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.statement-table-head select {
  height: 32px;
  border: 0;
  border-radius: 2px;
  background: #1e293b;
  color: #94a3b8;
  padding: 0 12px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
}

.statement-table-wrap {
  overflow-x: auto;
}

.statement-table {
  width: 100%;
  min-width: 930px;
  border-collapse: collapse;
}

.statement-table th {
  height: 48px;
  background: #f8fafc;
  color: #7486a1;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: left;
  padding: 0 24px;
  border-bottom: 1px solid #e2e8f0;
}

.statement-table td {
  height: 62px;
  color: #0b1c30;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  line-height: 18px;
  padding: 0 24px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

.statement-table td strong,
.statement-table td span,
.statement-table td em {
  display: block;
}

.statement-table td strong {
  font-weight: 700;
}

.statement-table td span {
  color: #94a3b8;
  font-size: 10px;
}

.statement-table td em {
  color: #ba1a1a;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  line-height: 11px;
  text-transform: uppercase;
}

.statement-totals {
  margin-left: auto;
  width: min(360px, 100%);
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.statement-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  line-height: 18px;
}

.statement-totals span {
  color: #64748b;
}

.statement-totals strong {
  color: #64748b;
  font-weight: 500;
}

.statement-totals .negative,
.statement-total-payable strong {
  color: #ba1a1a;
}

.statement-total-payable span {
  color: #101d2d;
  font-weight: 700;
  text-transform: uppercase;
}

.statement-total-payable strong {
  font-size: 18px;
}

.statement-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.statement-support-grid article {
  min-height: 150px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
  padding: 24px;
}

.support-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.support-icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.support-icon--amber {
  background: #fffbeb;
  color: #f59e0b;
}

.support-icon--purple {
  background: #faf5ff;
  color: #9333ea;
}

.statement-support-grid h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #101d2d;
  margin-bottom: 8px;
}

.statement-support-grid p {
  max-width: 300px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #64748b;
}

@media (max-width: 1180px) {
  .statement-overview,
  .statement-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .statement-payable-card {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  body.statement-page.db-page {
    display: block;
  }

  body.statement-page .db-sidebar {
    position: static;
    width: 100%;
    height: auto;
  }

  body.statement-page .db-wrapper {
    margin-left: 0;
  }

  body.statement-page .db-header {
    height: auto;
    min-height: 64px;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  body.statement-page .db-header-right {
    width: 100%;
    flex-wrap: wrap;
  }

  .statement-main {
    padding: 24px 16px 48px;
  }
}

@media (max-width: 680px) {
  .statement-overview,
  .statement-support-grid {
    grid-template-columns: 1fr;
  }

  .statement-payable-card {
    grid-column: auto;
  }

  .statement-search-row label,
  .statement-field--license,
  .statement-field--date,
  .statement-field--status {
    width: 100%;
  }

  .statement-table-head {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ==============================================
   BOOKINGS PAGE
   ============================================== */

body.bookings-page {
  background: #f8f9ff;
}

.bookings-main {
  background: #f8f9ff;
  padding: 32px;
  gap: 24px;
}

.bookings-title-row h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #101d2d;
  letter-spacing: -0.6px;
}

.bookings-title-row p {
  margin-top: 4px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #788599;
}

.booking-tabs {
  min-height: 53px;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 2px 0 3px;
  overflow-x: auto;
}

.booking-tabs button {
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #64748b;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 0 20px;
  white-space: nowrap;
  cursor: pointer;
}

.booking-tabs .booking-tab-active {
  background: #101d2d;
  color: #feb23d;
}

.bookings-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.bookings-list-head {
  height: 45px;
  background: #101d2d;
  border-bottom: 1px solid #1e293b;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.bookings-list-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  color: #fff;
  text-transform: uppercase;
}

.bookings-list-head h2 span {
  color: #feb23d;
}

.booking-item {
  min-height: 142px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 220px 180px;
  align-items: center;
  gap: 30px;
  padding: 24px 28px 22px 36px;
}

.booking-item-main h3 {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #0b1c30;
}

.booking-item-main h3 span {
  color: #64748b;
}

.booking-item-main h3 em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  min-width: 70px;
  border-radius: 999px;
  background: #fecaca;
  color: #ef4444;
  font-style: normal;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  text-transform: uppercase;
  margin-left: 8px;
}

.booking-meta-grid {
  display: grid;
  grid-template-columns: 86px 150px 180px 190px 145px;
  gap: 32px;
  align-items: end;
}

.booking-meta-grid div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-meta-grid span,
.booking-payable span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: #64748b;
}

.booking-meta-grid strong {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #000205;
}

.seat-pills {
  display: flex !important;
  flex-direction: row !important;
  gap: 0 !important;
}

.seat-pills b {
  height: 28px;
  min-width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #bbf7d0;
  color: #0f5132;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  border-right: 1px solid rgba(16,29,45,0.08);
}

.seat-pills b:first-child {
  border-radius: 2px 0 0 2px;
}

.seat-pills b:last-child {
  border-radius: 0 2px 2px 0;
  border-right: 0;
}

.booking-route {
  display: grid;
  grid-template-columns: auto 26px 32px 26px auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
}

.booking-route strong {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #0b1c30;
}

.booking-route span {
  height: 1px;
  border-top: 1px dashed #94a3b8;
}

.booking-route i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}

.booking-route small {
  grid-column: 1 / -1;
  justify-self: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 15px;
  color: #94a3b8;
}

.booking-payable {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.booking-payable strong {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #0b1c30;
}

.booking-payable button {
  height: 40px;
  margin-top: 12px;
  border: 0;
  border-radius: 4px;
  background: #feb23d;
  color: #291800;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 0 20px;
  cursor: pointer;
}

.bookings-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bookings-pagination button {
  width: 48px;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  background: #fff;
  color: #0b1c30;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.bookings-pagination .active {
  background: #101d2d;
  border-color: #101d2d;
  color: #fff;
}

@media (max-width: 1280px) {
  .booking-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .booking-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body.bookings-page.db-page {
    display: block;
  }

  body.bookings-page .db-sidebar {
    position: static;
    width: 100%;
    height: auto;
  }

  body.bookings-page .db-wrapper {
    margin-left: 0;
  }

  body.bookings-page .db-header {
    height: auto;
    min-height: 64px;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  body.bookings-page .db-header-right {
    width: 100%;
    flex-wrap: wrap;
  }

  .bookings-main {
    padding: 24px 16px 48px;
  }
}

@media (max-width: 680px) {
  .booking-item {
    min-height: 0;
    padding: 22px 18px;
  }

  .booking-meta-grid {
    grid-template-columns: 1fr;
  }

  .booking-item-main h3 {
    font-size: 18px;
  }
}

/* TICKETING GROUPS PAGE */
.ticketing-main {
  gap: 24px;
  padding: 42px 48px 56px 62px;
  background: #f8fafc;
}

.ticketing-title-row h1 {
  margin: 0 0 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: -1.1px;
  color: #0b1c30;
}

.ticketing-title-row p {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #64748b;
}

.ticketing-filters {
  width: 100%;
  max-width: 1230px;
  min-height: 178px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  padding: 24px 28px 30px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.ticketing-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.ticketing-filters h2 {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.8px;
  color: #0b1c30;
}

.ticketing-trip-toggle {
  width: 214px;
  height: 41px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border: 1px solid #f2a522;
  border-radius: 4px;
  background: #fff;
}

.ticketing-trip-toggle button {
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #0b1c30;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.ticketing-trip-toggle button:focus-visible {
  outline: 2px solid #101d2d;
  outline-offset: 2px;
}

.ticketing-trip-toggle .active {
  background: #feb23d;
}

.ticketing-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr)) 150px;
  gap: 18px;
  align-items: end;
}

.ticketing-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticketing-field span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #0b1c30;
}

.ticketing-field select {
  width: 100%;
  height: 48px;
  border: 1px solid #d9e1ec;
  border-radius: 4px;
  background: #fff;
  color: #0b1c30;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 0 42px 0 14px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.ticketing-search-btn {
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: #feb23d;
  color: #0b1c30;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.ticketing-table-card {
  width: 100%;
  max-width: 1230px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.ticketing-table-card > h2 {
  height: 62px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 26px;
  background: #101d2d;
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}

.ticketing-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.ticketing-table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
}

.ticketing-table th {
  height: 58px;
  padding: 0 18px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  color: #64748b;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-align: left;
  text-transform: uppercase;
}

.ticketing-table td {
  height: 95px;
  padding: 16px 18px;
  border-bottom: 1px solid #e2e8f0;
  color: #0b1c30;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 20px;
  vertical-align: middle;
}

.ticketing-table tbody tr:last-child td {
  border-bottom: 0;
}

.ticketing-table td > strong {
  display: inline-block;
  font-weight: 700;
  white-space: nowrap;
}

.airline-logo {
  width: 118px;
  height: 42px;
  display: flex;
  align-items: center;
}

.airline-logo--image img {
  max-width: 108px;
  max-height: 42px;
  object-fit: contain;
}

.airline-logo--saudia span {
  color: #14532d;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.4px;
}

.route-cell {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.route-cell strong {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}

.route-cell span {
  color: #94a3b8;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
}

.meal-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
}

.meal-icon--yes {
  background: #dcfce7;
  color: #16a34a;
}

.meal-icon--no {
  background: #fee2e2;
  color: #ef4444;
}

.ticket-status {
  min-width: 138px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 13px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticket-status--closed {
  background: #fecaca;
  color: #ef4444;
}

.ticket-status--open {
  background: #bbf7d0;
  color: #16a34a;
}

.ticket-price {
  color: #0b1c30;
  font-size: 16px;
}

.ticketing-pagination {
  margin-top: 2px;
}

@media (max-width: 1180px) {
  .ticketing-filter-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .ticketing-search-btn {
    width: 150px;
  }
}

@media (max-width: 920px) {
  body.ticketing-page.db-page {
    display: block;
  }

  body.ticketing-page .db-sidebar {
    position: static;
    width: 100%;
    height: auto;
  }

  body.ticketing-page .db-wrapper {
    margin-left: 0;
  }

  body.ticketing-page .db-header {
    height: auto;
    min-height: 64px;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  body.ticketing-page .db-header-right {
    width: 100%;
    flex-wrap: wrap;
  }

  .ticketing-main {
    padding: 24px 16px 48px;
  }
}

@media (max-width: 640px) {
  .ticketing-title-row h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .ticketing-filters {
    padding: 22px 18px;
  }

  .ticketing-filters-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ticketing-trip-toggle {
    width: 100%;
  }

  .ticketing-filter-grid {
    grid-template-columns: 1fr;
  }

  .ticketing-search-btn {
    width: 100%;
  }
}

/* SIDE MENU RESPONSIVE PAGE */
.side-menu-toggle,
.side-menu-backdrop {
  display: none;
}

body.side-menu-page {
  background: #fff;
  min-height: 100vh;
}

@media (max-width: 767px) {
  body.side-menu-page.db-page {
    display: block;
    min-height: 100vh;
    overflow-x: hidden;
  }

  body.side-menu-page.side-menu-open {
    overflow: hidden;
  }

  body.side-menu-page .db-sidebar {
    width: min(82vw, 300px);
    max-width: 300px;
    height: 100dvh;
    transform: translateX(-104%);
    transition: transform 0.22s ease;
    box-shadow: 18px 0 40px rgba(15, 23, 42, 0.22);
    overflow-y: auto;
  }

  body.side-menu-page.side-menu-open .db-sidebar {
    transform: translateX(0);
  }

  body.side-menu-page .db-sidebar-logo {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  body.side-menu-page .db-logo-icon-wrap {
    width: 64px;
    height: 64px;
  }

  body.side-menu-page .db-logo-icon-wrap img {
    width: 34px;
    height: 34px;
  }

  body.side-menu-page .db-logo-title {
    font-size: 18px;
    line-height: 23px;
  }

  body.side-menu-page .db-logo-subtitle {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.1px;
  }

  .side-menu-toggle {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 130;
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #d9e1ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    cursor: pointer;
  }

  .side-menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #101d2d;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .side-menu-toggle:focus-visible {
    outline: 3px solid rgba(254, 178, 61, 0.65);
    outline-offset: 3px;
  }

  body.side-menu-open .side-menu-toggle {
    border-color: rgba(254, 178, 61, 0.7);
  }

  body.side-menu-open .side-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.side-menu-open .side-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.side-menu-open .side-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .side-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: block;
    background: rgba(15, 23, 42, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  body.side-menu-open .side-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}
