
.country-selector {
    position: relative;
}

.country-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.7rem;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.country-button:hover,
.country-button:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.country-flag {
    object-fit: cover;
    border-radius: 3px;
}

.country-fullscreen-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.country-fullscreen-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease;
    /*border: 1px solid red;*/
}

.country-fullscreen-list a:hover,
.country-fullscreen-list a:focus {
    background: rgba(255,255,255,0.1);
}
