
    :root {
      --primary: #f7f7f7;
      --accent: #03396c;
      --bg: #f7f7f7;
      --light: #ffffff;
      --tab-active: #03396c;
      --tab-inactive: #dcdcdc;
      --text: #333;
      --muted: #666;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      background: var(--bg);
      color: var(--text);
      padding-bottom: 50px; /* reserve space for banner */
  
    }

    header {
      background-color: var(--primary);
      color: rgb(1, 3, 8);
      padding: 1.5rem 1rem;
      text-align: center;
    }

    .tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 2rem auto 0;
      padding-bottom: 0.5rem;
      border-bottom: 1px dashed #ccc;
    }

    .tab {
      padding: 0.75rem 1.5rem;
      cursor: pointer;
      background: var(--tab-inactive);
      color: var(--text);
      border-radius: 8px 8px 0 0;
      transition: background 0.3s ease;
    }

    .tab .flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-right: 8px;
  vertical-align: middle;
  background-size: cover;
  border-radius: 2px;
}

    .tab.active {
      background: var(--tab-active);
      color: white;
      font-weight: bold;
    }

    .hero {
      background-color: var(--accent);
      color: white;
      text-align: center;
      padding: 2rem 1rem;
      border-radius: 25px;
      max-width: 700px;
      margin: 1rem auto;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .hero .today-check {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

    .hero h2 {
      margin: 0 0 1rem;
      font-weight: 500;
      font-size: 1.2rem;
    }

    .hero .date {
      font-size: 3rem;
      font-weight: 700;
    }

    .hero .name {
      font-size: 1.5rem;
      margin-top: 0.5rem;
      font-weight: 400;
    }

    .hero .countdown {
      margin-top: 1rem;
      font-size: 1.2rem;
    }

    main {
      max-width: 900px;
      margin: 2rem auto;
      background: var(--light);
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    h2 {
      margin-top: 2rem;
      font-size: 1.25rem;
      border-bottom: 2px solid var(--accent);
      padding-bottom: 0.25rem;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }

    th, td {
      padding: 1rem;
      border-bottom: 1px solid #eee;
      text-align: left;
    }

    th {
      background-color: #e0e0e0;
      color: var(--text);
      font-weight: 600;
    }

    td strong {
      font-weight: 600;
    }

    .footer {
      text-align: center;
      font-size: 0.9rem;
      color: var(--muted);
      margin: 2rem 0;
    }

    a {
      color: var(--accent);
    }


    #cookie-consent-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #e0e0e0; /* ✅ Grey background */
  color: #333;
  padding: 1rem;
  z-index: 1000;
  font-size: 0.95rem;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-box {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-box p {
  margin: 0;
  flex: 1 1 auto;
}

.cookie-box a {
  color: #145DA0;
  text-decoration: underline;
}

.cookie-buttons button {
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 0.5rem;
}

#accept-cookies {
  background: #4caf50; /* ✅ Green */
}

#reject-cookies {
  background: #e53935; /* ✅ Red */
}



    @media (max-width: 600px) {
      .tab {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
      }

      .hero .date {
        font-size: 2.5rem;
      }

      th, td {
        font-size: 0.9rem;
        padding: 0.6rem;
      }
    }