/* Reset & fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f6f9;
  color: #333;
}




/* Force correct colors for Bootstrap alerts */
.alert-success {
  color: #0f5132 !important;             /* Tekst */
  background-color: #d1e7dd !important;  /* Achtergrond */
  border-color: #badbcc !important;      /* Rand */
}

.alert-danger {
  color: #842029 !important;
  background-color: #f8d7da !important;
  border-color: #f5c2c7 !important;
}

.alert-warning {
  color: #664d03 !important;
  background-color: #fff3cd !important;
  border-color: #ffecb5 !important;
}

.alert-info {
  color: #055160 !important;
  background-color: #cff4fc !important;
  border-color: #b6effb !important;
}





/* Main content */
.main {
  margin-left: 240px;
  padding: 30px;
}

/* Cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
}
.card h2 {
  font-size: 2rem;
}
.card p {
  color: #666;
}
.card.blue { background-color: #17a2b8; color: #fff; }
.card.green { background-color: #28a745; color: #fff; }
.card.red { background-color: #dc3545; color: #fff; }

/* Login & Register */
.login-box,
.register-box {
  width: 400px;
  margin: 80px auto;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.login-box h2,
.register-box h2 {
  margin-bottom: 20px;
}
.login-box input,
.register-box input,
.register-box select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.login-box button,
.register-box button {
  padding: 10px 15px;
  width: 100%;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}
.login-box button:hover,
.register-box button:hover {
  background-color: #0056b3;
}


.alert {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
}

