.ma-location-picker-button {
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.ma-location-picker-button:hover {
    background: #005f8a;
}

.ma-location-picker-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.ma-location-picker-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.ma-location-picker-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.ma-location-picker-content h2 {
    margin: 0 0 15px;
    font-size: 18px;
}

.ma-location-picker-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ma-location-picker-content li {
    padding: 10px;
    cursor: pointer;
}

.ma-location-picker-content li:hover {
    background: #f5f5f5;
}

.ma-location-picker-content input[type="radio"] {
    margin-right: 10px;
}

#ma-location-picker-reset {
    display: block;
    margin-top: 15px;
    color: #0073aa;
    text-decoration: none;
}