* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f7fb;
    color: #1a1a1a;
}

/* HEADER */
.header {
    background: white;
    border-bottom: 1px solid #e0e6ed;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    color: #005aa7;
    font-size: 20px;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* CARD */
.card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* FORM */
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
}

input:focus {
    outline: none;
    border-color: #005aa7;
}

/* BUTTON (FORM BUTTONS) */
button {
    width: 100%;
    padding: 12px;
    background: #005aa7;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #004080;
}

/* 🔥 UNIFORME KNOPPEN (VOOR TABLES / ACTIES) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 110px;
    height: 36px;

    padding: 0 10px;
    box-sizing: border-box;

    text-align: center;
    background: #005aa7;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.btn:hover {
    background: #004080;
}

/* 🔥 Zorg dat button.btn hetzelfde werkt */
button.btn {
    border: none;
    cursor: pointer;
    width: auto; /* overschrijft 100% van button */
    padding: 0 10px;
}

/* 🔥 Nettere uitlijning in tabellen */
td .btn {
    margin-right: 5px;
}

/* USER LIST */
.user {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #e0e6ed;
}

.user:last-child {
    border-bottom: none;
}

/* SMALL BUTTON */
.btn-small {
    width: auto;
    padding: 6px 12px;
    font-size: 12px;
}

/* GRID */
.grid-title {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
    background: #f5f7fa;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid-title:hover {
    background: #e9eef5;
}

/* 🔥 SELECT zelfde als input */
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    background: white;
    font-family: inherit;
    font-size: 14px;
}

select:focus {
    outline: none;
    border-color: #005aa7;
}

/* 🔥 Zorg dat alles netjes onder elkaar blijft */
form select + select {
    margin-top: -5px;
}

.team-select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.team-option {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background: #f5f7fa;
    border-radius: 6px;
    cursor: pointer;
}

.team-option:hover {
    background: #e9eef5;
}

/* 🔥 checkbox 20% */
.team-option input {
    width: 20%;
    margin: 0;
}

/* 🔥 naam 80% */
.team-option span {
    width: 80%;
}

.team-option input:checked + span {
    font-weight: bold;
}

.team-select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.team-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: #f5f7fa;
    border-radius: 6px;
    cursor: pointer;
}

.team-option:hover {
    background: #e9eef5;
}

.team-option input {
    margin: 0;
}

.team-option input:checked + span {
    font-weight: bold;
}