/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    padding-top: 40px; /* Adjust based on the height of the top-bar */
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 0;
}

header .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #333;
    border-bottom: 2px solid #444; /* Adds subtle separation */
}

.language-switcher {
    font-size: 14px;
}

.language-switcher a {
    color: #fff;
    text-decoration: none;
    margin-right: 35px;
}

.language-switcher a:hover {
    text-decoration: underline;
}

.user-options {
    font-size: 14px;
}

.user-options a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
}

.user-options a:hover {
    text-decoration: underline;
}

/* Main content styles */
main {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1200px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

.advertisement-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.advertisement-block iframe {
    max-width: 100%;
    height: auto; /* Ensures iframe maintains its aspect ratio */
}

.separator {
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}
