.header {
    background-color: #3366ff;
}

.header-container {
    display: flex;
    margin: 0;
    padding: 1em 1.5rem;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    font-size: 1.875rem;
    font-weight: 700;
}

.header-link {
    color: white;
    text-decoration: none;
}

.header-controls {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.lang-buttons-container {
    display: flex;
    flex-wrap: nowrap;
}

.lang-button {
    padding: 0.5em 1em;
    background-color: inherit;
    color: white;
    border: none;
    position: relative;
    white-space: nowrap;
    margin-right: 0.75rem;
}

.lang-button:last-child {
    margin-right: 0;
}

.lang-button:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.375rem;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: #ffffff;
}


.lang-button-active {
    font-weight: 700;
}

/* prepne na vertikalny ak sa tlacidla nezmestia */
@media (max-width: 600px) {
    .lang-buttons-container {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .lang-button {
        padding: 0.25em 0.5em;/
    }

    .lang-button:not(:last-child)::after {
        display: none;
    }

    .header-title {
        font-size: 1.5rem;
        font-weight: 600;
    }
}