.location-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.location-card {
    background: #1e1f26;
    border: 2px solid #2a2c34;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-card:hover {
    border-color: #0C7AF2;
}

.location-card.active {
    border-color: #3ed13eff;
    background: rgba(10, 14, 39, 0.75);
}

.location-left,
.location-right {
    display: flex;
    align-items: center;
}

.location-flag {
    width: 40px;
    height: 28px;
    border-radius: 4px;
    object-fit: cover;
}

.location-logo {
    width: 32px;
    opacity: 0.9;
}

.location-center {
    flex-grow: 1;
    text-align: center;
}

.location-city {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

.location-country {
    font-size: 12px;
    color: #aaa;
}