header {
    position: fixed;
    top: 0; /* Keep header fixed at the top of the page */
    left: 0;
    width: 100%; /* Full-width for the header */
    display: flex;
    justify-content: space-between; /* Space logos evenly between left and right */
    align-items: center;
    padding: 5px 10px 15px; /* Increase bottom padding to 20px */
    background-color: white; /* Optional: Add a background to make logos stand out */
    z-index: 1000; /* Ensure the header stays above other elements */
    border-bottom: 2px solid #ccc; /* Optional: subtle border */
}

.logo-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#logo-stepp {
    max-width:240px;
    height: auto;
    margin-top: 5px; /* Small space from the top */
    margin-left: 10px; /* Blank space from the left */
}

#logo-slapp {
    max-width: 100px;
    height: auto;
    margin-top: 5px; /* Small space from the top */
    margin-right: 20px; /* Blank space from the right */
}

/* Ensure content starts below the header */
body {
    margin-top: 130px; /* Push content down to avoid overlapping with the fixed header */
}

@media (max-width: 600px) {
    header {
        flex-direction: row; /* Keep logos side by side */
        justify-content: space-between; /* Logos remain left and right aligned */
        padding: 5px 20px; /* Adjust padding for mobile */
    }

    body {
        margin-top: 80px; /* Push content down to avoid overlapping with the fixed header */
    }

    #logo-stepp {
        width: 150px; /* Smaller size for mobile */
        height: auto;
    }

    #logo-slapp {
        width: 60px; /* Smaller size for mobile */
        height: auto;
        margin-right: 50px;
    }
}

#button-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 25px;
    margin: 20px 10px 10px 50px;
}

@media (max-width: 600px) {
    #button-container {
        flex-flow: column;
        gap: 0;
        justify-content: space-evenly;
        margin: 50px 20px 20px 20px;
        align-items: center;
    }

    #button-container .button {
        width: 100px; /* Allow buttons to stretch fully in the column */
        text-align: center;
    }
}

.button {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    background-color: var(--color-primary-a50);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.button:hover {
    background-color: var(--color-primary-a60);
}

/* Boodschappen block styling */
#messages-container {
    margin: 20px 50px; /* Add margin for positioning */
    padding: 10px;
    border: 1px solid #ccc; /* Add a border for separation */
    border-radius: 5px; /* Rounded corners for better design */
    background-color: #f9f9f9; /* Light background for contrast */
    max-height: 400px; /* Height for 10 lines of text */
    overflow-y: auto; /* Enable scrolling for overflow */
}

@media (max-width: 600px) {
    #messages-container {
        margin: 20px 10px; /* Adjust margin for mobile */
        max-height: 250px;
    }
}

#messages-container h2 {
        margin-top: 0;
        font-size: 18px; /* Title font size */
        color: #333; /* Title color */
    }

#messages-container p {
        margin: 5px 0; /* Add spacing between messages */
        font-size: 14px; /* Message font size */
        line-height: 1.5; /* Better readability */
}