.uc-city-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.uc-city-button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.uc-city-button.uc-active {
    background: #40E2B0;
    color: white;
    box-shadow: 0 0 15px rgba(64, 226, 176, 0.3);
}

.uc-city-block {
    display: none;
}

.uc-city-block.uc-active {
    display: block;
}