/* Base styling for the language switcher */
.language-switcher {
    position: fixed;
    top: 0;
    right: 59px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2050;
}

.language-box {
    padding: 10px 10px;
    background-color: #e9d3b3;
    color: #302e25;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.language-box.en-box.active {
    background-color: #febd17; /* Yellow for selected language */
}

.language-box.ar-box.active {
    background-color: #febd17; /* Yellow for selected language */
}

.language-box.fr-box.active {
    background-color: #febd17; /* Yellow for selected language */
}

/* Hover effect */
.language-box:hover {
    background-color: #436E80; /* Bright blue on hover */
    color: white;
}

/* For mobile screen sizes */
@media (max-width: 1200px) {
    .language-switcher {
        top: 60px;
        right: 120px;
    }

    .language-box {
        padding: 8px 15px;
        margin-left: 5px;
    }
}

/* For small mobile screen sizes */
@media (max-width: 640px) {
    .language-switcher {
        top: 4px;
        right: 120px;
    }

    .language-box {
        padding: 8px 15px;
        margin-left: 5px;
    }
}