/* Algemeen ontwerp */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    text-align: center;
}

/* Gele tekst */
h1, p {
    color: #FFFF00; /* Gele kleur */
}

/* Banner styling */
.banner img {
    width: 300px;
    height: 168px;
    margin-top: 20px;
}

/* Gele knoppen styling */
.menu-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.yellow-button {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #FFFF00;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
}

.yellow-button:hover {
    background-color: #CC0000;
    color: #FFF;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

.disclaimer-link {
    color: #FFFF00;
    text-decoration: none;
}

.disclaimer-link:hover {
    color: #CC0000;
}

/* Popup stijlen */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.popup-content {
    background-color: black;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 0, 0.5);
    color: white;
    overflow-y: auto;
    max-height: 80vh;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    color: #FFFF00;
}

.close:hover {
    color: #CC0000;
}

/* Tabel stijlen */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: black;
    color: white;
}

th, td {
    border: 1px solid yellow;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #222;
}

/* Link styling */
.official-links ul {
    list-style: none;
    padding: 0;
}

.official-links ul li {
    margin: 5px 0;
}

.official-links a {
    color: #FFFF00;
    text-decoration: none;
}

.official-links a:hover {
    color: #CC0000;
}
