/* ================================================================
   PHARMALEX BRAND DESIGN SYSTEM
   شركة فارمالكس للتنمية المحدودة - توزيع الأدوية بالسودان
   Brand Colors from Logo:
   - Primary Orange: #E8923A
   - Primary Blue: #2C6FAC
   - Gold/Arabic Text: #C8900A
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand Colors */
  --ph-orange: #E8923A;
  --ph-orange-dark: #C97A28;
  --ph-orange-light: #F5B572;
  --ph-blue: #2C6FAC;
  --ph-blue-dark: #1E4F7E;
  --ph-blue-light: #4A8FCC;
  --ph-gold: #C8900A;
  --ph-gold-light: #E8A820;

  /* Neutrals */
  --ph-white: #FFFFFF;
  --ph-off-white: #F8F9FC;
  --ph-light-gray: #EEF1F6;
  --ph-gray: #8A9AB5;
  --ph-dark-gray: #4A5568;
  --ph-dark: #1A2438;

  /* Semantic */
  --ph-success: #27AE60;
  --ph-warning: #F39C12;
  --ph-danger: #E74C3C;
  --ph-info: #2C6FAC;

  /* Typography */
  --font-primary: 'Cairo', 'Tajawal', sans-serif;
  --font-display: 'Cairo', sans-serif;

  /* Spacing */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 111, 172, 0.10);
  --shadow-md: 0 6px 24px rgba(44, 111, 172, 0.14);
  --shadow-lg: 0 16px 48px rgba(44, 111, 172, 0.18);
  --shadow-orange: 0 8px 24px rgba(232, 146, 58, 0.30);
  --shadow-blue: 0 8px 24px rgba(44, 111, 172, 0.30);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-primary);
  background-color: var(--ph-off-white);
  color: var(--ph-dark);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  font-size: 15px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--ph-light-gray); }
::-webkit-scrollbar-thumb { background: var(--ph-blue-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ph-blue); }

/* ════════════════════════════════════════════
   SIDEBAR NAVIGATION
════════════════════════════════════════════ */
.ph-sidebar {
  width: 260px;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--ph-blue-dark) 0%, var(--ph-blue) 60%, var(--ph-blue-dark) 100%);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.ph-sidebar-brand {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.ph-sidebar-brand img {
  width: 130px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.ph-sidebar-brand .brand-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

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

.ph-nav-section-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.40);
  padding: 16px 12px 8px;
  font-weight: 700;
}

.ph-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
  margin-bottom: 3px;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: right;
}

.ph-nav-item i {
  width: 20px;
  font-size: 16px;
  opacity: 0.85;
  flex-shrink: 0;
}

.ph-nav-item:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: translateX(-3px);
}

.ph-nav-item.active {
  background: linear-gradient(135deg, var(--ph-orange), var(--ph-orange-dark));
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.ph-nav-item.active i { opacity: 1; }

.ph-nav-dropdown .ph-nav-sub {
  display: none;
  padding-right: 20px;
  padding-top: 4px;
}

.ph-nav-dropdown.open .ph-nav-sub { display: block; }

.ph-nav-sub .ph-nav-item {
  font-size: 13px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.65);
}

.ph-sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.ph-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ph-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ph-orange), var(--ph-orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.ph-user-name { 
  font-size: 13px; 
  color: rgba(255,255,255,0.85); 
  font-weight: 600;
  line-height: 1.3;
}

.ph-user-role { 
  font-size: 11px; 
  color: rgba(255,255,255,0.45);
}

/* ════════════════════════════════════════════
   TOP HEADER BAR
════════════════════════════════════════════ */
.ph-topbar {
  height: 64px;
  background: var(--ph-white);
  border-bottom: 2px solid var(--ph-light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: var(--shadow-sm);
}

.ph-topbar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ph-blue-dark);
}

.ph-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ph-topbar-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--ph-light-gray);
  color: var(--ph-dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 16px;
}

.ph-topbar-btn:hover {
  background: var(--ph-blue);
  color: white;
}

.ph-notification-badge {
  position: relative;
}

.ph-notification-badge::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: var(--ph-orange);
  border-radius: 50%;
  border: 2px solid white;
}

/* ════════════════════════════════════════════
   MAIN LAYOUT
════════════════════════════════════════════ */
.ph-layout {
  margin-right: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.ph-content {
  padding: 28px 32px;
  flex: 1;
}

/* ════════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════════ */
.ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--ph-gray);
}

.ph-breadcrumb a {
  color: var(--ph-blue);
  text-decoration: none;
  font-weight: 500;
}

.ph-breadcrumb a:hover { color: var(--ph-orange); }
.ph-breadcrumb .separator { color: var(--ph-light-gray); }
.ph-breadcrumb .current { color: var(--ph-dark-gray); font-weight: 600; }

/* ════════════════════════════════════════════
   PAGE HEADER
════════════════════════════════════════════ */
.ph-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ph-light-gray);
}

.ph-page-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ph-blue-dark);
  margin: 0;
}

.ph-page-subtitle {
  font-size: 14px;
  color: var(--ph-gray);
  margin-top: 4px;
  font-weight: 400;
}

/* ════════════════════════════════════════════
   STAT CARDS (Dashboard KPIs)
════════════════════════════════════════════ */
.ph-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.ph-stat-card {
  background: var(--ph-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 111, 172, 0.06);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.ph-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--ph-blue);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.ph-stat-card.orange::before { background: var(--ph-orange); }
.ph-stat-card.gold::before { background: var(--ph-gold); }
.ph-stat-card.success::before { background: var(--ph-success); }

.ph-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.ph-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--ph-blue-light), var(--ph-blue));
  color: white;
}

.ph-stat-card.orange .ph-stat-icon {
  background: linear-gradient(135deg, var(--ph-orange-light), var(--ph-orange));
}

.ph-stat-card.gold .ph-stat-icon {
  background: linear-gradient(135deg, var(--ph-gold-light), var(--ph-gold));
}

.ph-stat-card.success .ph-stat-icon {
  background: linear-gradient(135deg, #52d68a, var(--ph-success));
}

.ph-stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--ph-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.ph-stat-label {
  font-size: 13px;
  color: var(--ph-gray);
  font-weight: 500;
}

.ph-stat-change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ph-stat-change.up { color: var(--ph-success); }
.ph-stat-change.down { color: var(--ph-danger); }

/* ════════════════════════════════════════════
   CARDS & PANELS
════════════════════════════════════════════ */
.ph-card {
  background: var(--ph-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 111, 172, 0.06);
  overflow: hidden;
  margin-bottom: 24px;
  transition: var(--transition);
}

.ph-card:hover { box-shadow: var(--shadow-md); }

.ph-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--ph-light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #FAFBFE, var(--ph-white));
}

.ph-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ph-blue-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.ph-card-title i {
  color: var(--ph-orange);
  font-size: 18px;
}

.ph-card-body { padding: 24px; }

/* ════════════════════════════════════════════
   REPORT CARDS (Accounting)
════════════════════════════════════════════ */
.ph-report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.ph-report-card {
  background: var(--ph-white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ph-light-gray);
  border-top: 3px solid var(--ph-blue);
  transition: var(--transition);
}

.ph-report-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-top-color: var(--ph-orange);
}

.ph-report-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ph-blue-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ph-report-card-title i {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--ph-blue-light), var(--ph-blue));
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   TABLES
════════════════════════════════════════════ */
.ph-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
}

.ph-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ph-table thead th {
  background: linear-gradient(135deg, var(--ph-blue-dark), var(--ph-blue));
  color: white;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  text-align: right;
}

.ph-table thead th:first-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.ph-table thead th:last-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.ph-table tbody tr {
  border-bottom: 1px solid var(--ph-light-gray);
  transition: var(--transition-fast);
}

.ph-table tbody tr:hover {
  background: rgba(44, 111, 172, 0.04);
}

.ph-table tbody tr:last-child { border-bottom: none; }

.ph-table td {
  padding: 13px 16px;
  color: var(--ph-dark-gray);
  vertical-align: middle;
}

.ph-table tbody tr:nth-child(even) {
  background: rgba(238, 241, 246, 0.5);
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.ph-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.ph-btn-primary {
  background: linear-gradient(135deg, var(--ph-blue-light), var(--ph-blue));
  color: white;
  box-shadow: var(--shadow-blue);
}

.ph-btn-primary:hover {
  background: linear-gradient(135deg, var(--ph-blue), var(--ph-blue-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(44, 111, 172, 0.40);
  color: white;
  text-decoration: none;
}

.ph-btn-orange {
  background: linear-gradient(135deg, var(--ph-orange-light), var(--ph-orange));
  color: white;
  box-shadow: var(--shadow-orange);
}

.ph-btn-orange:hover {
  background: linear-gradient(135deg, var(--ph-orange), var(--ph-orange-dark));
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.ph-btn-outline {
  background: transparent;
  border: 2px solid var(--ph-blue);
  color: var(--ph-blue);
}

.ph-btn-outline:hover {
  background: var(--ph-blue);
  color: white;
  text-decoration: none;
}

.ph-btn-danger {
  background: linear-gradient(135deg, #f56b6b, var(--ph-danger));
  color: white;
}

.ph-btn-success {
  background: linear-gradient(135deg, #52d68a, var(--ph-success));
  color: white;
}

.ph-btn-sm { padding: 6px 14px; font-size: 13px; }
.ph-btn-lg { padding: 14px 32px; font-size: 16px; }

.ph-btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* ════════════════════════════════════════════
   FORMS
════════════════════════════════════════════ */
.ph-form-group {
  margin-bottom: 18px;
}

.ph-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ph-dark-gray);
  margin-bottom: 7px;
}

.ph-form-control {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--ph-light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--ph-dark);
  background: var(--ph-white);
  transition: var(--transition-fast);
  direction: rtl;
}

.ph-form-control:focus {
  outline: none;
  border-color: var(--ph-blue);
  box-shadow: 0 0 0 3px rgba(44, 111, 172, 0.15);
  background: #FAFCFF;
}

.ph-form-control::placeholder { color: var(--ph-gray); }

select.ph-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A9AB5' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}

/* ════════════════════════════════════════════
   DATE PICKER PANEL
════════════════════════════════════════════ */
.ph-date-panel {
  background: linear-gradient(135deg, var(--ph-blue-dark), var(--ph-blue));
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
  color: white;
}

.ph-date-panel label {
  color: rgba(255,255,255,0.80);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  display: block;
}

.ph-date-panel .ph-form-control {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: white;
}

.ph-date-panel .ph-form-control:focus {
  background: rgba(255,255,255,0.22);
  border-color: var(--ph-orange);
  box-shadow: 0 0 0 3px rgba(232, 146, 58, 0.25);
}

.ph-date-panel .ph-form-control::placeholder { color: rgba(255,255,255,0.50); }
.ph-date-panel input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); }

/* ════════════════════════════════════════════
   BADGES
════════════════════════════════════════════ */
.ph-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.ph-badge-blue { background: rgba(44, 111, 172, 0.12); color: var(--ph-blue); }
.ph-badge-orange { background: rgba(232, 146, 58, 0.12); color: var(--ph-orange-dark); }
.ph-badge-success { background: rgba(39, 174, 96, 0.12); color: var(--ph-success); }
.ph-badge-danger { background: rgba(231, 76, 60, 0.12); color: var(--ph-danger); }
.ph-badge-warning { background: rgba(243, 156, 18, 0.12); color: var(--ph-warning); }

/* ════════════════════════════════════════════
   ALERTS
════════════════════════════════════════════ */
.ph-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ph-alert-danger {
  background: rgba(231, 76, 60, 0.10);
  border: 1px solid rgba(231, 76, 60, 0.25);
  color: var(--ph-danger);
}

.ph-alert-success {
  background: rgba(39, 174, 96, 0.10);
  border: 1px solid rgba(39, 174, 96, 0.25);
  color: var(--ph-success);
}

.ph-alert-warning {
  background: rgba(243, 156, 18, 0.10);
  border: 1px solid rgba(243, 156, 18, 0.25);
  color: var(--ph-warning);
}

/* ════════════════════════════════════════════
   SEARCH BOX
════════════════════════════════════════════ */
.ph-search-box {
  position: relative;
  max-width: 320px;
}

.ph-search-box i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ph-gray);
  font-size: 15px;
}

.ph-search-box input {
  padding-right: 42px;
  width: 100%;
}

/* ════════════════════════════════════════════
   MODAL
════════════════════════════════════════════ */
.ph-modal .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.ph-modal .modal-header {
  background: linear-gradient(135deg, var(--ph-blue-dark), var(--ph-blue));
  color: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: none;
  padding: 18px 24px;
}

.ph-modal .modal-title { font-weight: 700; font-size: 17px; }
.ph-modal .btn-close { filter: invert(1); }
.ph-modal .modal-body { padding: 24px; }
.ph-modal .modal-footer { border-top: 1px solid var(--ph-light-gray); padding: 16px 24px; }

/* ════════════════════════════════════════════
   LOADING SPINNER
════════════════════════════════════════════ */
.ph-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--ph-light-gray);
  border-top-color: var(--ph-blue);
  border-radius: 50%;
  animation: ph-spin 0.8s linear infinite;
}

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

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

.ph-empty-state i {
  font-size: 56px;
  color: var(--ph-light-gray);
  margin-bottom: 16px;
  display: block;
}

.ph-empty-state h4 { color: var(--ph-dark-gray); font-weight: 700; margin-bottom: 8px; }
.ph-empty-state p { font-size: 14px; }

/* ════════════════════════════════════════════
   PRINT STYLES (for PDF templates)
════════════════════════════════════════════ */
@media print {
  .ph-sidebar, .ph-topbar, .no-print { display: none !important; }
  .ph-layout { margin-right: 0 !important; }
  body { background: white; font-size: 12px; }

  .ph-print-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--ph-blue);
    margin-bottom: 20px;
  }

  .ph-print-logo { height: 60px; }

  .ph-print-company {
    text-align: right;
  }

  .ph-print-company h2 {
    font-size: 18px;
    color: var(--ph-blue-dark);
    font-weight: 800;
    margin: 0;
  }

  .ph-print-company p {
    font-size: 11px;
    color: var(--ph-gray);
    margin: 2px 0 0;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 992px) {
  .ph-sidebar {
    transform: translateX(260px);
  }

  .ph-sidebar.open {
    transform: translateX(0);
  }

  .ph-layout {
    margin-right: 0;
  }

  .ph-content {
    padding: 20px 16px;
  }

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

  .ph-report-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .ph-stats-grid {
    grid-template-columns: 1fr;
  }

  .ph-page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
