/* Additional styles for location question */
.location-question {
    margin: 20px 0;
}

.location-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.location-option {
    background-color: #4285F4;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.location-option:hover {
    background-color: #3367D6;
}
