/* Algemene instellingen */
body {
    font-family: Calibri, sans-serif;
    color: black;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
}

/* Sidebar */
.sidebar {
    background-color: #23B7C3;
    color: white;
    width: 20%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.logo img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.sidebar a {
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
}

.sidebar a:hover {
    text-decoration: underline;
}

/* Banner bovenaan */
.banner-top {
    background-color: #23B7C3;
    color: #D83051;
    text-align: center;
    padding: 20px;
    font-family: 'Comic Sans MS', sans-serif;
    position: fixed;
    top: 0;
    left: 20%;
    width: 80%;
    box-sizing: border-box;
    z-index: 10;
}

.banner-top h1 {
    margin: 0;
}

/* Content */
.content {
    margin-left: 20%;
    margin-top: 105px;
    padding: 20px;
    flex: 1;
    min-height: 100vh;
    position: relative;
}

.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images/SF watermerk.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40% auto;
    opacity: 0.1;
    pointer-events: none;
}

/* Responsieve aanpassingen voor kleinere schermen */
@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .banner-top {
        left: 0;
        width: 100%;
        position: relative;
    }

    .content {
        margin-left: 0;
        margin-top: 20px;
    }
}
