/* --------------------------------------------- */
/* KLEUREN & BASIS */
/* --------------------------------------------- */
:root {
  --primary: #e10600;
  --secondary: #1e1e1e;
  --accent: #ffcc00;
  --light: #f5f5f5;
  --dark: #15151e;
}

body {
  background: linear-gradient(135deg, var(--dark), var(--secondary));
  color: var(--light);
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* --------------------------------------------- */
/* HEADER */
/* --------------------------------------------- */
header {
  text-align: center;
  padding: 2rem;
  background: rgba(30,30,30,0.85);
  border-bottom: 3px solid var(--primary);
}

header h1 {
  margin: 0;
  color: var(--primary);
  font-size: 2.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --------------------------------------------- */
/* ALGEMEEN */
/* --------------------------------------------- */
main {
  padding: 2rem 4%;
}

main p {
  max-width: 900px;
  margin: auto;
  text-align: center;
  color: var(--light);
  line-height: 1.6;
}

/* --------------------------------------------- */
/* TABELLEN */
/* --------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.5);
}

caption {
  caption-side: top;
  padding: 1rem;
  font-size: 1.6rem;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: bold;
  background: rgba(0,0,0,0.4);
}

th, td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

th {
  background: rgba(30,30,30,0.8);
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

tr:nth-child(even) {
  background: rgba(255,255,255,0.05);
}

tr:hover {
  background: rgba(225,6,0,0.3);
  transition: 0.3s ease;
}

/* --------------------------------------------- */
/* SIDEBAR (PAST BIJ JE BESTAANDE CODE) */
/* --------------------------------------------- */
.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 1.5rem;
  background: var(--primary);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  z-index: 2100;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: rgba(30,30,30,0.95);
  backdrop-filter: blur(10px);
  padding-top: 60px;
  transition: left 0.4s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.sidebar a {
  padding: 1rem 2rem;
  text-decoration: none;
  color: var(--light);
  font-weight: bold;
}

.sidebar a:hover {
  background: var(--primary);
  color: var(--accent);
}

.sidebar.active {
  left: 0;
}

/* --------------------------------------------- */
/* RESPONSIVE */
/* --------------------------------------------- */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.7rem;
  }

  table {
    font-size: 0.85rem;
  }

  th, td {
    padding: 0.7rem;
  }
}

