/* ================================================= */
/* GLOBALE LAYOUT & ACHTERGROND */
/* ================================================= */

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #9b59b6, #4b63ff);
}

#wrapper {
    width: 100%;
    min-height: 1000px;
    font-family: Arial, Helvetica, sans-serif; /* EIS: Ander lettertype */
    font-size: 20px; 
    color: rgba(245, 245, 245, 0.582);
    
    /* Achtergrondafbeelding */
    background-image: url('img/pattern.png');
    background-repeat: repeat;
    background-size: 260px 260px;
}

/* ================================================= */
/* HEADER & NAVIGATIE STIJLEN */
/* ================================================= */

header {
    text-align: center;
    width: calc(100% - 60px);
    height: 90px;
    margin: 0 30px;
    font-size: 60px; 
    color: whitesmoke;
    background-color: #000000cb;
}
/* ================================================= */
/* HOOFDINHOUD */
/* ================================================= */

#WrapperMini {
    width: calc(100% - 60px);
    min-height: 800px;
    margin: 0 30px;
    font-size: 20px;
    background-color: #2b2b2bcb;
    color: black;
}

#ArticleLeft {
    float: left;
    width: 31%;
    min-height: 480px;
    margin-top: 30px;
    margin-left: 1%;
    text-align: left;
    background: linear-gradient(135deg, #4a4a4a, #1a1a2e);
    outline: 3px solid black;
    border-radius: 15px;
    color: whitesmoke;
}

#ArticleMiddle {
    float: left;
    width: 30%;
    min-height: 720px;
    margin-top: 30px;
    margin-left: 1%;
    text-align: left;
    background: linear-gradient(135deg, #cebe6a, #28652a);
    outline: 3px solid black;
    border-radius: 15px;
    color: whitesmoke;
}

#ArticleRight {
    float: left;
    width: 35%;
    min-height: 520px;
    margin-top: 30px;
    margin-left: 1%;
    text-align: left;
    background: linear-gradient(135deg, #9b59b6, #4b63ff);
    outline: 3px solid black;
    border-radius: 15px;
    color: whitesmoke;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

#StatusSection, #RequestsSection { width: 50%; }

#ArticleLeft table, #ArticleMiddle table, #ArticleRight table {
    width: 90%;
    margin-left: 15px;
    border-collapse: collapse;
    font-size: 18px;
}

#ArticleLeft td, #ArticleLeft th,
#ArticleMiddle td, #ArticleMiddle th,
#ArticleRight td, #ArticleRight th {
    border: none;
    color: whitesmoke;
    padding: 3px 10px;
}

#ArticleBottom {
    width: calc(100% - 60px);
    min-height: 100px;
    background-color: #d1d1d100;
    clear: left;
}

/* ================================================= */
/* TcbEL STIJLEN*/
/* ================================================= */

tcble {
    width: 100%;
    border-collapse: collapse; /* Zorgt dat de matzwarte lijnen netjes worden */
    margin-top: 15px;
}

th, td {
    border: 2px solid #000000; /* Matzwarte border */
    padding: 10px; /* Aangepast van 0px naar 10px voor leesbaarheid */
    text-align: left;
    color: black; 
}

th {
    background-color: #E0E0E0; /* Neutrale lichtgrijze achtergrond */
    color: #000000;
    font-weight: bold;
}

/* ================================================= */
/* FOOTER STIJLEN */
/* ================================================= */

footer {
    width: calc(100% - 60px);
    min-height: 100px;
    margin: 0 0 30px 30px;
    font-size: 20px;
    text-align: center;
    background-color: #0e0d0dcb;
    float: middle;
}

/* EIS: Stijl voor de lijst in de footer */
footer ul {
    list-style: none; 
    padding: 0;
    margin: 0;
}