.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    width: 90%; 
    max-width: 650px;  
    box-sizing: border-box;
    z-index: 1000;
}


.modal button {
    margin: 5px 5px 5px 0px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.btn-yes {
    background-color: #dc3545;
    color: white;
}
.btn-no {
    background-color: #003893;
    color: white;
}

@media screen and (max-width: 600px) {
    .location-container {
        flex-direction: column;
        gap: 10px;
    }

    .location-container label,
    .location-container select {
        width: 100%;
    }

    .modal {
        padding: 15px;
    }
}
