.dashboard-main {
  padding: 60px 5%;
  background: #f9fbfd;
  min-height: 80vh;
}

.dashboard-main h1, .dashboard-main h2 {
  color: #004c8c;
  margin-bottom: 15px;
}

.dashboard-main table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.dashboard-main th, .dashboard-main td {
  border: 1px solid #e0e6ed;
  padding: 10px;
}

.dashboard-main th {
  background: #eaf1f9;
  color: #004c8c;
  text-align: left;
}

.dashboard-main a, .dashboard-main button {
  background: #004c8c;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 14px;
  text-decoration: none;
}

.dashboard-main a:hover, .dashboard-main button:hover {
  background: #003b6b;
}

.login-container {
  max-width: 400px;
  margin: 80px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.error { color: red; }
.success { color: green; }


/* kaartstijl zonder hover-animatie of beweging */
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    padding: 20px;
    margin: 25px 0;
    transition: none !important;
    transform: none !important;
}

/* verwijder elke hoververandering */
.card:hover {
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1) !important;
    transform: none !important;
}

/* verwijder tabelhover kleur ook als je dat storend vindt */
tr:hover {
    background: inherit !important;
}