/* Algemene body-styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5; /* Lichte achtergrondkleur */
    color: #003f87; /* Fenerbahçe blauw */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigatiebalk */
.topnav {
    background-color: #F1C232; /* Fenerbahçe geel */
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.topnav a {
    float: left;
    display: block;
    color: #003f87; /* Fenerbahçe blauw */
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.topnav a:hover {
    background-color: #003f87; /* Blauwe hover effect */
    color: #F1C232; /* Gele hover tekstkleur */
}

.topnav .active {
    background-color: #003f87; /* Blauwe achtergrond voor actieve pagina */
    color: #F1C232; /* Gele tekstkleur voor actieve pagina */
}

/* Hoofdtitel */
h1, h2 {
    color: #003f87; /* Fenerbahçe blauw */
    text-align: center;
    margin-top: 20px;
}

/* Paragrafen en algemene tekst */
p {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin: 20px auto;
    width: 80%;
    text-align: justify;
}

/* Tabellen */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #003f87;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #003f87;
    color: #F1C232; /* Geel voor de koppen */
}

td {
    background-color: #ffffff;
    color: #003f87; /* Blauwe tekstkleur */
}

/* Links */
a {
    color: #003f87;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #F1C232; /* Gele hover kleur */
    text-decoration: underline;
}

/* Afbeeldingen */
img {
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #003f87; /* Blauwe rand */
}

/* Lijsten */
ul, ol {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #F4F4F4;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 5px solid #003f87;
}

ul li:hover {
    background-color: #003f87;
    color: #F1C232; /* Gele tekstkleur voor hover */
}

/* Responsieve stijlen */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .topnav {
        flex-direction: column;
    }

    .topnav a {
        padding: 10px;
        font-size: 16px;
    }

    table, th, td {
        font-size: 14px;
        padding: 8px;
    }

    img {
        width: 100%;
        height: auto;
    }

    h1 {
        font-size: 2em;
    }

    ul li {
        font-size: 14px;
    }
}

