/* Base styling for the header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    background-color: #ffffff;
    color: #034d8c;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    /* Light gray shadow */
}

/* Logo width set to 15% of the screen */
.header-left .logo {
    width: 15vw;
    height: auto;
}

/* Center-align the title */
.header-middle {
    flex: 1;
    text-align: center;
}

.header-middle h1 {
    font-family: tenorite-reg, sans-serif;
    font-size: 1.8em;
    margin: 0;
}

/* Larger language selector */
.language-selector {
    padding: 10px;
    font-size: 1.2em;
    border: none;
    border-radius: 10px;
    background-color: #034d8c;
    color: #fff;
    cursor: pointer;
    text-align: center;
}







@media (max-width: 768px) {

    .header-left .logo {
        width: 20vw;
    }

    .header-middle h1 {
        font-size: 1em;

    }

    .language-selector {
        font-size: 1em;
    }

}

/* Responsive styling 
@media  (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    /* Adjust logo size on smaller screens 
    .header-left .logo {
        width: 40vw;
        height: auto;
    }

    /* Move language selector to the top 
    .header-right {
        order: -1;
        width: 100%;
        margin-bottom: 10px;
    }

    .header-left, .header-middle {
        width: 100%;
    }

    .header-middle h1 {
        font-size: 1.8em;
    }

    .language-selector {
        width: 100%;
        font-size: 1.5em;
    }

}
*/