/* Algemene reset en basis */
* {
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  padding: 20px;
  min-height: 100vh;
}

/* Container voor content */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px 40px;
  border-radius: 12px;
}

/* Koppen */
h2 {
  margin-bottom: 20px;
  padding-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
  border-bottom-style: solid;
  border-bottom-width: 3px;
}

/* Tabellen */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  font-size: 0.95rem;
  font-weight: 500;
}

th, td {
  text-align: left;
  padding: 12px 15px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

th {
  font-weight: 600;
  border-radius: 8px 8px 0 0;
}

/* Links */
a {
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* Knoppen */
button {
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

button:disabled {
  cursor: not-allowed;
}

/* Formulieren binnen tabellen */
form {
  margin: 0;
}

td form button {
  width: 100%;
}

/* Paragraaf met welkomsttekst */
.welcome-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Link onderaan */
.bottom-link {
  margin-top: 15px;
  font-size: 1rem;
}

/* Inlogpagina styling */
.login-container {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px 35px;
  border-radius: 15px;
  text-align: center;
}

.login-container h1 {
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.login-container label {
  display: block;
  text-align: left;
  margin-bottom: 8px;
  font-weight: 600;
}

.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-style: solid;
  border-width: 1px;
  border-radius: 8px;
  font-size: 1rem;
  background: transparent;
  color: inherit;
  transition: border-color 0.3s ease;
}

.login-container input[type="text"]:focus,
.login-container input[type="password"]:focus {
  outline: none;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 20px 15px;
  }

  table, th, td {
    font-size: 0.85rem;
  }
}
