/* Footer */
.footer {
    width: 100vw; /* Ensure the footer spans the full width of the viewport */
    position: fixed; /* Fix the footer at the bottom */
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between; /* Space out footer-links and language-switcher */
    align-items: center; /* Align items vertically */
    padding: 10px 20px;
    font-size: 12px;
    color: #666;
    background-color: #ffffff; /* Footer background color */
    z-index: 10; /* Ensure it stays above other content */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Footer Links */
.footer-links {
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center the links horizontally */
    flex: 1; /* Allow the links to take up available space */
}

.language-switcher {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 80%;
    margin-bottom: 10px; /* Adjusted margin for better spacing */
    font-size: 8px; /* Match the font size of footer-links */
    display: flex;
    align-items: center; /* Ensure vertical alignment */
}

.language-switcher button {
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
    font-size: 10px;
    cursor: pointer;
    margin-right: 10px;
}