body {
    background-color: #2c3e50;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 20px;
}

/* Class Head */
.head {
    text-align: center;
    margin-bottom: 40px;
}

/* Class Table */
.table {
    width: 100%;
    border-collapse: collapse; /* netjes border */
    background-color: #34495e;
    border-radius: 5px;
}

/* Attributen van tabel */
.table th, .table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #1f2c39;
}

/* Attributen style text */
.table th {
    font-weight: bold;
    background-color: #3b526a;
}

.table tr:nth-child(even) {
    background-color: #3b526a;
}

.table tr:nth-child(odd) {
    background-color: #2c3e50;
}

.btn-warning,
.btn-danger {
    width: auto !important;             
    display: inline-block !important;
    padding: 8px 12px;
    margin: 5px;
}

/* "Update" */
.btn-warning {
    background-color: #f39c12;
}
.btn-warning:hover {
    background-color: #e99000;
}

/* "Verwijder" */
.btn-danger {
    background-color: #e74c3c;
}
.btn-danger:hover {
    background-color: #a72416;
}

/* BUTTONS */
.btn {
    display: block;          
    width: 200px;
    margin: 20px auto 10px;  
    padding: 10px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    border: none;           
    transition: background-color 0.3s, border 0.3s;
}

/* "Weer eentje te laat" */
.btn-create {
    background-color: #2ecc71;
}
.btn-create:hover {
    background-color: #208a4c;
}

/* "Voeg toe" (Submit) */
.btn-submit {
    background-color: #2ecc71;
}
.btn-submit:hover {
    background-color: #208a4c;
}

/* "Terug" */
.btn-back {
    background-color: #3498db;
}
.btn-back:hover {
    background-color: #2980b9;
}


/* Statiestieken */
.stat {
    margin-top: 30px;
}

.list-group {
    list-style: none;
    padding: 0;
}

.item {
    background-color: #1f2c39;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
}

/* Create pagina */
label, input {
    display: block;
    text-align: left;
    width: 40%;
    padding: 15px;
}

textarea {
    display: block;
    width: 42%;
    padding-bottom: 60px;
}

form {
    display: grid;
    place-items: center;
}