/* =============================================
   HAIRMOSA ERP — DASHBOARD DESIGN SYSTEM
   Luxury Dark Theme · v1.0
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --pink-400: #e8457a;
  --pink-500: #d63568;
  --pink-600: #bf2456;
  --gold-300: #e8cc6a;
  --gold-400: #d4a843;
  --gold-500: #b8921e;
  --brown-500: #7a4a2e;

  /* ERP Dark Palette */
  --bg-base:      #0d0c0e;
  --bg-surface:   #141215;
  --bg-card:      #1a181c;
  --bg-card-hover:#1e1c21;
  --bg-sidebar:   #100f12;
  --border:       rgba(255,255,255,0.07);
  --border-gold:  rgba(212,168,67,0.2);
  --border-pink:  rgba(232,69,122,0.2);

  /* Text */
  --text-primary:   #f2f0f5;
  --text-secondary: rgba(242,240,245,0.6);
  --text-muted:     rgba(242,240,245,0.35);

  /* Status */
  --status-pending:   #d4a843;
  --status-confirmed: #4ade80;
  --status-cancelled: #f87171;
  --status-completed: #60a5fa;

  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;

  /* Sizing */
  --sidebar-w: 260px;
  --topbar-h:  68px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Transitions */
  --t: 0.2s ease;
}

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

html { font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--font-sans); cursor: pointer; }
img { max-width: 100%; display: block; }

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* =============================================
   SIDEBAR
============================================= */
#sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  z-index: 100;
  transition: transform var(--t);
}

.sidebar-logo {
  padding: 28px 24px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.sidebar-logo-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.sidebar-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 2px;
}

.sidebar-section-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 20px 24px 8px;
}

.sidebar-nav { flex: 1; overflow-y: auto; padding: 8px 12px; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
  position: relative;
  margin-bottom: 2px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.nav-item:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
}

.nav-item.active {
  background: linear-gradient(90deg, rgba(232,69,122,0.12), rgba(232,69,122,0.04));
  color: var(--pink-400);
  border-left: 2px solid var(--pink-400);
}

.nav-item .nav-icon {
  width: 20px;
  text-align: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.nav-badge {
  margin-left: auto;
  background: var(--pink-500);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  min-width: 20px;
  text-align: center;
}

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t);
}
.sidebar-user:hover { background: rgba(255,255,255,0.04); }

.sidebar-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-400), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.sidebar-user-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sidebar-user-role {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* =============================================
   MAIN LAYOUT
============================================= */
#main {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* =============================================
   TOP BAR
============================================= */
#topbar {
  height: var(--topbar-h);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.topbar-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-date {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.topbar-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--t);
}

.topbar-btn:hover {
  border-color: var(--border-pink);
  color: var(--pink-400);
}

/* =============================================
   CONTENT AREA
============================================= */
#content {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

/* =============================================
   STAT CARDS
============================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: border-color var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color, var(--pink-400)), transparent);
  opacity: 0.5;
}

.stat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.stat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.stat-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-card-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.stat-card-value {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card-trend {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
}

.trend-up { color: #4ade80; }
.trend-down { color: #f87171; }

/* =============================================
   SECTION HEADERS
============================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =============================================
   TABLES
============================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}

tbody td {
  padding: 14px 24px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }

tbody tr {
  transition: background var(--t);
  cursor: pointer;
}

tbody tr:hover td {
  background: rgba(255,255,255,0.025);
  color: var(--text-primary);
}

.td-primary {
  font-weight: 600;
  color: var(--text-primary) !important;
}

.td-mono {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--text-muted) !important;
}

/* =============================================
   STATUS BADGES
============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.badge-pending   { color: var(--status-pending);   background: rgba(212,168,67,0.12); }
.badge-confirmed { color: var(--status-confirmed); background: rgba(74,222,128,0.12); }
.badge-cancelled { color: var(--status-cancelled); background: rgba(248,113,113,0.12); }
.badge-completed { color: var(--status-completed); background: rgba(96,165,250,0.12); }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  transition: all var(--t);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  color: white;
  box-shadow: 0 4px 16px rgba(232,69,122,0.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,69,122,0.35); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: white;
  box-shadow: 0 4px 16px rgba(212,168,67,0.2);
}
.btn-gold:hover { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.15); color: var(--text-primary); }

.btn-danger {
  background: rgba(248,113,113,0.12);
  color: var(--status-cancelled);
  border: 1px solid rgba(248,113,113,0.2);
}
.btn-danger:hover { background: rgba(248,113,113,0.2); }

.btn-sm { padding: 5px 12px; font-size: 0.72rem; }
.btn-icon { padding: 8px; gap: 0; }

/* =============================================
   SEARCH & FILTER BAR
============================================= */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  flex: 1;
  min-width: 200px;
  transition: border-color var(--t);
}

.search-box:focus-within {
  border-color: var(--border-pink);
}

.search-box i { color: var(--text-muted); font-size: 0.85rem; }

.search-box input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  width: 100%;
}

.search-box input::placeholder { color: var(--text-muted); }

.filter-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  min-width: 140px;
}

/* =============================================
   GRID LAYOUTS
============================================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.grid-60-40 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; }

/* =============================================
   MODAL
============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-primary);
}

.modal-close {
  width: 30px; height: 30px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all var(--t);
}

.modal-close:hover { color: var(--text-primary); border-color: var(--border-pink); }

.modal-body { padding: 24px 28px; }

.modal-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* =============================================
   FORM CONTROLS (ERP)
============================================= */
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--t);
  appearance: none;
}

.form-control:focus { border-color: var(--border-pink); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control option { background: var(--bg-card); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* =============================================
   EMPTY STATE
============================================= */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.empty-state p { font-size: 0.82rem; }

/* =============================================
   AVATAR / INITIALS
============================================= */
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-400), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: white;
  flex-shrink: 0;
}

.avatar-sm { width: 26px; height: 26px; font-size: 0.6rem; }

/* =============================================
   INLINE ACTIONS
============================================= */
.row-actions {
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: opacity var(--t);
}

tbody tr:hover .row-actions { opacity: 1; }

/* =============================================
   TABS
============================================= */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 20px;
}

.tab {
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t);
  border: none;
  background: none;
}

.tab.active {
  background: var(--bg-card);
  color: var(--text-primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* =============================================
   CALENDAR CHIP
============================================= */
.calendar-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  min-width: 48px;
}

.calendar-chip-day { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); line-height: 1; }
.calendar-chip-month { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* =============================================
   PROGRESS BAR
============================================= */
.progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink-400), var(--gold-400));
  transition: width 0.6s ease;
}

/* =============================================
   NOTIFICATION DOT
============================================= */
.notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-400);
  flex-shrink: 0;
}

/* =============================================
   RESPONSIVE — MOBILE FIRST
============================================= */

/* ---- Sidebar Overlay (Mobile) ---- */
#sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99;
  backdrop-filter: blur(2px);
}
#sidebar-overlay.open { display: block; }

/* ---- Mobile Menu Toggle Button ---- */
#mobile-menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--t);
}
#mobile-menu-btn:hover { color: var(--pink-400); border-color: var(--border-pink); }

/* ---- Table Responsive Wrapper ---- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
}

/* ---- Page Header ---- */
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Input generic ---- */
.input {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--t);
}
.input:focus { border-color: var(--border-pink); }

/* ============================================
   TABLET (≤1100px) — Sidebar collapses
============================================= */
@media (max-width: 1100px) {
  :root { --sidebar-w: 0px; }

  #sidebar {
    transform: translateX(-260px);
    z-index: 100;
    transition: transform 0.25s ease;
  }
  #sidebar.open { transform: translateX(0); width: 260px; }
  #main { margin-left: 0; }

  #mobile-menu-btn { display: inline-flex; }

  #topbar { padding: 0 16px; gap: 12px; }
  .topbar-date { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-60-40 { grid-template-columns: 1fr; }
}

/* ============================================
   MOBILE (≤768px)
============================================= */
@media (max-width: 768px) {
  #content { padding: 16px 12px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .grid-2, .grid-3, .grid-60-40 { grid-template-columns: 1fr; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }

  /* Topbar */
  #topbar { padding: 0 12px; height: 58px; }
  .topbar-title { font-size: 0.95rem; }
  .topbar-subtitle { display: none; }
  .topbar-right { gap: 8px; }

  /* Cards padding */
  .card-header { padding: 14px 16px; }
  thead th { padding: 10px 14px; }
  tbody td { padding: 12px 14px; }
  .modal-body { padding: 18px 18px; }
  .modal-header { padding: 16px 18px; }
  .modal-footer { padding: 14px 18px; }

  /* Page header stack */
  .page-header { flex-direction: column; align-items: stretch; }
  .page-header .btn { width: 100%; justify-content: center; }

  /* Filter bar stack */
  .filter-bar { flex-direction: column; gap: 10px; }
  .filter-bar .btn { width: 100%; justify-content: center; }
  .filter-bar select, .filter-bar input { width: 100% !important; }

  /* Tables — horizontal scroll */
  .card { overflow: visible; }
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .table-responsive table { min-width: 580px; }
  table { min-width: unset; }

  /* Stat cards */
  .stat-card { padding: 16px; }
  .stat-card-value { font-size: 1.8rem; }

  /* Modal */
  .modal { width: 95%; max-height: 95vh; border-radius: var(--radius-md); }

  /* Buttons inside table */
  .row-actions { opacity: 1; }

  /* Tabs */
  .tabs { overflow-x: auto; flex-wrap: nowrap; gap: 0; }
  .tab { white-space: nowrap; flex-shrink: 0; }

  /* Hide less important table cols on mobile */
  .hide-mobile { display: none !important; }
}

/* ============================================
   SMALL MOBILE (≤480px)
============================================= */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }

  #topbar { height: 54px; }
  #content { padding: 12px 10px; }

  .stat-card-value { font-size: 1.6rem; }

  .btn { padding: 8px 14px; font-size: 0.78rem; }
  .btn-sm { padding: 4px 10px; font-size: 0.7rem; }

  /* Full width modals */
  .modal { width: 100%; border-bottom-left-radius: 0; border-bottom-right-radius: 0; margin-top: auto; }
  .modal-overlay.open { align-items: flex-end; }
}

