/**
 * Gestionale Pulmino Amico - Styles
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #bcbec2;
  overflow-x: hidden;
}

/* ============================================
   LOGIN PAGE
   ============================================ */

.login-container {
  background: white;
  max-width: 420px;
  margin: 100px auto;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.login-container h2 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 10px;
  font-size: 28px;
}

.login-container h3 {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 16px;
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 500;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #66bb6a;
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.1);
}

button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #66bb6a 0%, #43a047 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 160, 71, 0.3);
}

/* Background login (quando carichi l'immagine) */
body:has(#loginPage:not(.hidden)) {
  background-image: url("../assets/images/login-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Fallback se non c'è immagine di background */
body:has(#loginPage:not(.hidden))::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  z-index: -1;
}

.login-logo {
  text-align: center;
  margin-bottom: 20px;
}

.login-logo img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
}

.login-container h2 {
  display: none; /* Nasconde il vecchio titolo testuale */
}

.login-container h3 {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 16px;
}

.forgot-password {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

.forgot-password a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.forgot-password a:hover {
  color: #1b5e20;
  text-decoration: underline;
}

/* Rimuovi il bottone demo */
.demo-btn {
  display: none;
}

/* ============================================
   APP CONTAINER
   ============================================ */

.app-container {
  display: flex;
  min-height: 100vh;
}

/* ============================================
   RESPONSIVE LOGO
   ============================================ */

@media (max-width: 768px) {
  .login-logo img {
    max-height: 80px;
  }

  .sidebar-logo img {
    max-height: 50px;
  }
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar-logo {
  padding: 10px 0;
  text-align: center;
}

.sidebar-logo img {
  max-width: 90%;
  height: auto;
  max-height: 60px;
}

.sidebar {
  width: 280px;
  background: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  transition: transform 0.3s;
  z-index: 1000;
}

.sidebar-header {
  padding: 20px;
  background: linear-gradient(135deg, #66bb6a 0%, #43a047 100%);
  color: white;
}

.sidebar-header h1 {
  display: none; /* Nasconde il titolo testuale nella sidebar */
}

.sidebar-header p {
  font-size: 12px;
  opacity: 0.9;
  text-align: center;
  margin-top: 5px;
}

.sidebar-menu {
  padding: 20px 0;
}

.menu-item {
  padding: 15px 25px;
  color: #555;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  border-left: 3px solid transparent;
}

.menu-item:hover {
  background: #f5f7fa;
  color: #43a047;
  border-left-color: #43a047;
}

.menu-item.active {
  background: #e8f5e9;
  color: #2e7d32;
  border-left-color: #2e7d32;
  font-weight: 600;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid #e0e0e0;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: white;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #66bb6a 0%, #43a047 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.user-info {
  flex: 1;
}

.user-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.user-role {
  font-size: 12px;
  color: #999;
}

.logout-btn {
  padding: 10px;
  background: #f44336;
  font-size: 14px;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
  margin-left: 280px;
  flex: 1;
  padding: 30px;
  width: calc(100% - 280px);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.header h2 {
  font-size: 28px;
  color: #333;
}

.notification-bell {
  position: relative;
  cursor: pointer;
  padding: 12px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.notification-bell:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.notification-bell svg {
  width: 24px;
  height: 24px;
  fill: #666;
}

.notification-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #f44336;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: #f5f7fa;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
}

.btn-primary {
  background: linear-gradient(135deg, #66bb6a 0%, #43a047 100%);
  color: white;
}

.btn-danger {
  background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
  color: white;
}

.btn-warning {
  background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%);
  color: white;
}

.btn-secondary {
  background: #e0e0e0;
  color: #666;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   VEHICLES GRID
   ============================================ */

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.vehicle-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #66bb6a;
}

.vehicle-card.inactive {
  opacity: 0.5;
  background: #fafafa;
}

/* ============================================
   ALERT - Badge Colorato per Urgenza
   ============================================ */

.vehicle-alert {
  position: absolute;
  top: 15px;
  right: 15px;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  animation: pulse 2s infinite;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Badge con priorità massima (rosso) */
.vehicle-alert.priority-3 {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

/* Badge con priorità media (giallo) */
.vehicle-alert.priority-2 {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

/* Badge con priorità bassa (azzurro) */
.vehicle-alert.priority-1 {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

/* Alert Items - Colori aggiornati */
.alert-danger {
  background: #ffebee;
  border-color: #f44336;
  color: #c62828;
}

.alert-warning {
  background: #fff3e0;
  border-color: #ff9800;
  color: #e65100;
}

.alert-info {
  background: #e3f2fd;
  border-color: #2196f3;
  color: #1565c0;
}

/* Pulse più evidente per alert critici */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.vehicle-alert.priority-3 {
  animation: pulseDanger 1.5s infinite;
}

@keyframes pulseDanger {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.4);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(244, 67, 54, 0.8);
  }
}

.vehicle-plate {
  font-size: 24px;
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 12px;
}

.vehicle-model {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.vehicle-details {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #777;
}

.vehicle-detail-row {
  display: flex;
  justify-content: space-between;
}

/* ============================================
   BADGES
   ============================================ */

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-success {
  background: #c8e6c9;
  color: #2e7d32;
}

.badge-warning {
  background: #ffe082;
  color: #f57f17;
}

.badge-danger {
  background: #ffcdd2;
  color: #c62828;
}

.badge-info {
  background: #b3e5fc;
  color: #0277bd;
}

/* Gasolio con AdBlue - Blu scuro */
.badge-fuel-gasolio_adblue {
  background-color: #1565c0;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Gasolio senza AdBlue - Blu medio */
.badge-fuel-gasolio {
  background-color: #42a5f5;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Benzina/GPL - Verde */
.badge-fuel-benzina_gpl {
  background-color: #2e7d32;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Benzina - Arancione */
.badge-fuel-benzina {
  background-color: #e65100;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  overflow-y: auto;
  padding: 20px;
}

.modal-content {
  background: white;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 20px;
  position: relative;
  animation: modalSlideIn 0.3s;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #666;
  transition: all 0.3s;
}

.modal-close:hover {
  background: #eee;
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
}

/* ============================================
   FORMS
   ============================================ */

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* ============================================
   TABLES
   ============================================ */

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.table thead {
  background: #f5f7fa;
}

.table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: #555;
  font-size: 13px;
  text-transform: uppercase;
}

.table td {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.table tr:hover {
  background: #f9fafb;
}

/* ============================================
   STATS
   ============================================ */

/* Righe cliccabili con effetto hover */
.table tbody tr[style*="cursor: pointer"] {
  transition: all 0.2s;
}

.table tbody tr[style*="cursor: pointer"]:hover {
  background: #e8f5e9 !important;
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   ALERTS
   ============================================ */

.alert-list {
  max-height: 400px;
  overflow-y: auto;
}

.alert-item {
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 12px;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-danger {
  background: #ffebee;
  border-color: #f44336;
  color: #c62828;
}

.alert-warning {
  background: #fff3e0;
  border-color: #ff9800;
  color: #e65100;
}

.alert-info {
  background: #e3f2fd;
  border-color: #2196f3;
  color: #1565c0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
  display: none;
}

.filters {
  background: #f5f7fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.detail-item {
  padding: 15px;
  background: #f5f7fa;
  border-radius: 10px;
}

.detail-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
}

.detail-value {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: white;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    width: 100%;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .header h2 {
    font-size: 20px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LOADING SPINNER
   ============================================ */

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   FILTRI STATISTICHE - Checkbox Veicoli
   ============================================ */

#vehicleCheckboxes label:hover {
  background: #e8f5e9 !important;
  border-color: #66bb6a !important;
  transform: translateX(2px);
}

#vehicleCheckboxes input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #4caf50;
}

#vehicleCheckboxes label input:checked {
  background: #4caf50;
}

/* Scrollbar personalizzata per lista veicoli */
#vehicleCheckboxes::-webkit-scrollbar {
  width: 8px;
}

#vehicleCheckboxes::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

#vehicleCheckboxes::-webkit-scrollbar-thumb {
  background: #4caf50;
  border-radius: 4px;
}

#vehicleCheckboxes::-webkit-scrollbar-thumb:hover {
  background: #45a049;
}

/* ============================================
   TOGGLE MODALITÀ GRAFICI
   ============================================ */

.chart-mode-toggle {
  display: inline-flex;
  gap: 0;
  background: #f5f5f5;
  padding: 4px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chart-mode-btn {
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: #666;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chart-mode-btn:hover {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}

.chart-mode-btn.active {
  background: #4caf50;
  color: white;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* ============================================
   GRAFICI - Container
   ============================================ */

#chartsContainer,
#comparisonChartsContainer,
#costChartsContainer {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Canvas Charts - Responsive */
canvas {
  max-width: 100%;
  height: auto !important;
}

/* Desktop: 2 colonne */
@media (min-width: 769px) {
  #chartsContainer > div:first-child,
  #comparisonChartsContainer > div:first-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Tablet e Mobile: 1 colonna */
@media (max-width: 768px) {
  #chartsContainer > div,
  #comparisonChartsContainer > div {
    grid-template-columns: 1fr !important;
  }

  #chartsContainer canvas,
  #comparisonChartsContainer canvas,
  #costChartsContainer canvas {
    max-height: 250px !important;
  }
}

/* ============================================
   STATISTICHE - Titoli Sezioni
   ============================================ */

.stats-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

/* ============================================
   RESPONSIVE - Grafici Mobile
   ============================================ */

@media (max-width: 768px) {
  .chart-mode-toggle {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
  }

  .chart-mode-btn {
    flex: 1;
    justify-content: center;
    font-size: 12px;
    padding: 8px 12px;
  }

  #comparisonChartsContainer {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   FILTRI STATISTICHE - Layout 2 Colonne
   ============================================ */

.filters h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
}

.filters .form-group {
  margin-bottom: 15px;
}

.filters .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #555;
}

.filters select,
.filters input[type="date"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* Responsive - Stack filtri su mobile */
@media (max-width: 768px) {
  .filters {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  #vehicleCheckboxes {
    max-height: 200px !important;
  }
}

/* Badge Veicolo Disattivato */
.badge-inactive {
  background: linear-gradient(135deg, #999 0%, #666 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Veicolo Disattivato */
.vehicle-card[style*="opacity: 0.6"] {
  cursor: pointer;
  transition: all 0.3s ease;
}

.vehicle-card[style*="opacity: 0.6"]:hover {
  opacity: 0.8 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Pulsante Riattiva in evidenza */
.btn-success {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  font-weight: bold;
}

.btn-success:hover {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  transform: scale(1.05);
}

/* Toggle Veicoli Disattivati */
.page-header label[for="showInactiveToggle"] {
  user-select: none;
  white-space: nowrap;
}

.page-header input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4caf50;
}

.page-header input[type="checkbox"]:hover {
  transform: scale(1.1);
}

/* Layout Responsive */
@media (max-width: 768px) {
  .page-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px;
  }

  .page-header > div {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px !important;
  }
}
