/* css/footer_styles.css */

/* Frontpage Footer */
.frontpage_footer {
    height: 5vh;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    z-index: 2000;
    padding: 0 20px;
}

/* Footer Containers */
.footer_left,
.footer_middle,
.footer_right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_left {
    justify-content: flex-start;
}

.footer_right {
    justify-content: flex-end;
}

/* Footer Links */
.frontpage_footer a {
    color: #00cc00;
    text-decoration: none;
}

.frontpage_footer a:hover {
    text-decoration: underline;
}

/* Language Selector */
.language_selector {
    position: relative;
    cursor: pointer;
}

.current_language {
    font-size: 1em;
    font-weight: bold;
    color: #00cc00;
    padding: 5px 10px;
}

.language_menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #00cc00;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2001;
    width: 150px;
}

.language_option {
    padding: 10px;
    color: #fff;
    text-align: left;
    border-bottom: 1px solid #00cc00;
}

.language_option:last-child {
    border-bottom: none;
}

.language_option:hover {
    background: #333;
}

/* Responsive Design */
@media screen and (max-width: 720px) {
    .frontpage_footer {
        height: 5vh;
        padding: 0 10px;
    }

    .frontpage_footer a {
        font-size: 0.8em;
    }

    .current_language {
        font-size: 0.9em;
        padding: 5px;
    }

    .language_menu {
        width: 120px;
    }

    .language_option {
        padding: 8px;
        font-size: 0.9em;
    }
}