.smart-maps-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.smart-maps-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    max-width: 90%;
    width: 450px;
    text-align: center;
    box-sizing: border-box;
}

.smart-maps-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.smart-maps-primary-buttons {
    display: flex;
    width: 100%;
    gap: 10px;
}

.smart-maps-primary-buttons button {
    flex: 1;
}

.smart-maps-secondary-button {
    width: 60%;
}

/* Stack buttons vertically on small screens */
@media (max-width: 480px) {
    .smart-maps-buttons {
        flex-direction: column;
    }
    
    .smart-maps-primary-buttons {
        flex-direction: column;
    }
    
    .smart-maps-secondary-button {
        width: 100%;
    }
}

.smart-maps-buttons button {
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.2s;
}

.smart-maps-buttons button:hover {
    opacity: 0.9;
}

.smart-maps-apple {
    background: #000;
    color: #fff;
}

.smart-maps-google {
    background: #4285F4;
    color: #fff;
}

.smart-maps-choice {
    background: #5E35B1;
    color: #fff;
}

.smart-maps-remember {
    margin-top: 15px;
    text-align: left;
    font-size: 14px;
}

.smart-maps-remember input {
    margin-right: 8px;
}