footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    font-family: var(--font-primary);
    color: var(--color-white);
    padding: 1rem 0.3rem 1rem 1rem;
    font-size: 0.8rem;
    z-index: 10;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
    height: 50px;
    line-height: 5px;
    flex-shrink: 0;
    border-top: 1px solid #959595;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0px 5px;
}

.footer-right {
    display: flex;
    align-items: center;
}

.copyright {
    line-height: normal;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

/* Footer language menu styles */
.footer-language-menu {
    display: none !important; /* Hidden by default */
}

/* Media query for screens less than 1089px (mobile view) */
@media (max-width: 1089px) {
    .footer-language-menu {
        display: flex !important; /* Show in mobile view */
        margin-left: -21px;
    }
}

/* Media query for screens less than 458px */
@media (max-width: 458px) {
    .copyright {
        display: flex; /* Override display:none to show the language button */
        justify-content: flex-start;
        width: 50%; /* Take up half the footer width */
    }

    .copyright .copyright-text {
        display: none; /* Hide the copyright text but keep the container */
    }

    .footer-content {
        justify-content: space-between; /* Space between language button and feedback button */
    }
}
