/* Container styling */


/* Logo styling */
.logo-row {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 380px;
    margin-top: 90px;
}

/*kopieën van de logo en logo-row copies maar dan voor de main page banner*/
.banner-row {
    text-align: center;
    margin-bottom: 20px;
}
.banner {
    width: 380px;
    margin-top: 90px;
}

/* Alert styling */
.custom-alert {
    background-color: #d4edda; /* Pale green background */
    color: darkblue; /* Dark green text color */
    border: 1px solid #c3e6cb; /* Green border */
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.5;
    width: 60%;
    margin-left: 20%;
}

.custom-alert strong {
    margin-right: 5px;
    flex-shrink: 0;
}

.custom-alert i {
    margin-right: 10px;
    color: darkblue; /* Green color for the icon */
    font-size: 18px;
    flex-shrink: 0; /* Prevents the icon from shrinking */
}

.custom-alert p {
    margin: 0;
    flex-grow: 1; /* Ensures text grows without pushing the button out of view */
}

.btn-close {
    background: none;
    border: none;
    font-size: 10px;
    color: darkblue; /* Dark green */
    cursor: pointer;
    flex-shrink: 0; /* Prevents button from shrinking */
}

.btn-close:hover {
    color: lightblue; /* Darker green on hover */
}

/* Centered Content Section */
.content-section {
    text-align: left; /* Centers the text horizontally */
    font-family: Arial, sans-serif; /* Optional: Sets a clean, readable font */
    margin: 0 auto; /* Centers the content-section itself if it has a width */
    padding: 20px; /* Adds some padding around the content */
    max-width: 800px; /* Optional: Limits the width for better readability */
}

/* Center align and style list items */
.content-section ul {
    list-style-type: none; /* Removes default list bullets */
    padding: 0; /* Removes default padding */
}

.content-section ul li {
    margin: 10px 0; /* Adds some space between list items */
    font-weight: bold; /* Makes the list items bold */
}

/* Styling for paragraphs */
.content-section p {
    margin: 15px 0; /* Adds space between paragraphs */
    line-height: 1.5; /* Improves readability with better line spacing */
}

