:root {
  --font-main: 'Poppins', sans-serif;
  --color-bg: #191b41;
  --color-text: #fff;
  --color-muted: #777;
  --color-primary: #f8a81c;
  --color-primary-dark: #e89a17;
  --color-danger: #e53935;
  --color-success: #388e3c;
  --color-warning-bg: #fffbe6;
  --color-warning-text: #8c6d00;
  --radius: 6px;
  --border: 1px solid #ddd;
}

/* === RESET & BAZĂ === */
* { box-sizing: border-box; }
/* Regulile pentru body au fost eliminate pentru a evita conflictele */

/* ---------- Layout Header Creatix ---------- */

.creatix-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
  color: #fff;
  padding: 12px 20px;
  gap: 20px;
  border-radius:6px;
  margin: 0 auto 20px auto; /* Centrează și adaugă spațiu sub header */
  max-width: 100%;
}

.header-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stânga: logo */
.logo-col {
  justify-content: flex-start;
}
.live-logo {
  max-height: 60px;
  vertical-align: middle;
}

/* Mijloc: alertă aglomerare */
.alert-col {
  justify-content: center;
}
.creatix-alert-blink {
  background: #e53935;
  color: #fff;
  padding: 12px 20px;
  border-left: 5px solid #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
  min-width: 220px;
  min-height: 24px;
  animation: creatix-blink 1s linear infinite;
  box-shadow: 0 2px 12px rgba(229,57,53,0.15);
}
@keyframes creatix-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Dreapta: ceas */
.clock-col {
  justify-content: flex-end;
}
.header-clock {
  text-align: center;
}
#big-clock {
  font-size: 60px;
  font-weight: 700;
}
#big-date {
  font-size: 17px;
  margin-top: -18px;
}

/* 🔔 Toast pentru notificări */
#creatix-header-notices {
  margin: 10px 20px;
}
.creatix-toast {
  background: #333;
  color: #fff;
  padding: 10px 14px;
  margin-bottom: 8px;
  border-radius: 6px;
  font-size: 14px;
}
/* Variantă responsivă modernizată */
@media (max-width: 768px) {
  .creatix-header {
    flex-wrap: wrap;
    padding: 10px 16px;
  }

  .logo-col {
    width: 50%;
    justify-content: flex-start;
  }
  
  .clock-col {
    width: 50%;
    text-align: right;
  }
  
  .alert-col {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 8px;
  }

  .creatix-alert-blink {
    width: 100%;
    font-size: 14px;
    text-align: center;
    padding: 10px 12px;
    background: #e53935;
    color: #fff;
    border-radius: 6px;
    animation: creatix-blink 1s linear infinite;
  }
}
