/* ===== Fonts ===== */
@font-face{
    font-family:"VestasSans";
    src:url("../fonts/VestasSans/VestasSans_Standard.otf") format("opentype");
    font-weight:400; font-style:normal; font-display:swap;
  }
  @font-face{
    font-family:"VestasSans";
    src:url("../fonts/VestasSans/VestasSans_Medium.otf") format("opentype");
    font-weight:500; font-style:normal; font-display:swap;
  }

:root{
    --primary:#1F3144;
    --bg:#ffffff;
    --muted:#eef2f7;
    --text:#0f1720;
    --card:#ffffff;
    --ok:#16a34a;
    --danger:#dc2626;
    --future:#ffffff;
    --noprod:var(--barblue);
    --shadow:0 10px 30px rgba(0,0,0,0.08);
    --radius:16px;
    --border:#e6eaf0;
    --barblue:#4472c4;   /* Actual bars */
    --linereden:#ef4444; /* Target line */
    --partial-empty:#e2e8f0;
}
body {
    font-family: "VestasSans", Arial, sans-serif;
    background-color: var(--muted);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    width: 100%;
    max-width: 400px;
  }
  
  h1, h2 {
    text-align: center;
    color: var(--primary);
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  label {
    font-size: 14px;
    color: var(--text);
  }
  
  input {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
  }
  
  button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 10px;
    cursor: pointer;
  }
  
  button:hover {
    background: #1d4ed8;
  }

  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .popup.hidden {
    display: none;
  }
  
  .popup-content {
    background: var(--card);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
  }
  
  .hidden { display: none; }

  