
/*After send reservation then show modal*/

.custom-modal {

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #28a745; /* Bootstrap success green */
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    font-size: 18px;
    text-align: center;
    min-width: 300px;
}
