.modal {
    display: none;
    margin-top: 0px;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: auto;
    max-width: 800px;
    border-radius: 8px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.reservebtn {
    display: inline-block; /* Ensure it's inline for consistent alignment */
    text-decoration: none;
    color: #000000; /* Green color */
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #000000;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer; /* Change cursor to pointer */
    font-size: 16px; /* Font size */
    text-align: center; /* Center text */
}

.reservebtn:hover {
    background-color: #000000; /* Green color */
    color: #fff;
}
form {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}
label {
    display: block;
    margin-bottom: 8px;
}
input[type="text"], input[type="email"], input[type="date"], select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding does not affect width */
}
input[type="tel"] {
    width: 89%;
    padding: 8px;
    margin-bottom: 10px;
    margin-left: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding does not affect width */
}
/* input[type="number"] {
    width: 60px; 
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    display: block;
    margin: auto;
    margin-bottom: 10px;
} */
.package-details {
    margin-left: 20px;
}
.package-details ul {
    list-style-type: disc;
}

/* custom */
.modal-calendar {
    /* display: block !important; */
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.modal-calendar .modal-content {
    overflow-y: scroll !important;
}
