.locales-box{
background-color: #fff;
border-radius: 30px;
padding: 20px;
padding-top: 60px;
position: relative;
}

.locales-box .btn-wrapper {
position: absolute;
right: 10px;
top: 10px;
}

.locales-box .close-btn {
width: 45px;
height: 45px;
border: 1px solid var(--border);
border-radius: 50%;
transition: 0.4s;
}

.locales-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 16px;
padding: 20px;
}

.locale-item {
display: flex;
align-items: center;
justify-content: space-between;
background: #fff;
border: 1px solid #ddd;
border-radius: 12px;
padding: 10px 14px;
transition: border-color 0.2s, box-shadow 0.2s;
cursor: pointer;
}

.locale-item:hover {
border-color: #999;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.locale-item.selected {
border: 2px solid #4cafef;
background: #f5fbff;
}

.locale-flag {
width: 32px;
height: 32px;
margin-right: 10px;
}

.locale-info {
flex: 1;
}

.locale-title {
font-weight: 600;
font-size: 14px;
margin-bottom: 2px;
}

.locale-subtitle {
font-size: 12px;
color: #666;
line-height: 1.4;
}

.locale-item input[type="radio"] {
accent-color: #4cafef;
width: 18px;
height: 18px;
}
