.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.switch {
    display: flex;
    align-items: center;
}

.switch input[type="radio"] {
    display: none;
}

.switch label {
    display: inline-block;
    padding: 8px;
    margin-right: 5px;
    background-color: #e0e0e038;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.switch input[type="radio"]:checked + label {
    background-color: rgb(63, 106, 163);
    color: white;
}

.flag-img {
    width: 35px;
    pointer-events: none;
    border-radius: 25px;
}
