/* Booking Button */
.cf-btn-book {
    background-color: #d32f2f;
    /* Christmas Red */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.cf-btn-book:hover {
    background-color: #e65c00;
}

/* Modal Styling */
.cf-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    /* Centering */
    align-items: center;
    justify-content: center;
}

.cf-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    top: 20%;
    /* Fallback */
}

.cf-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.cf-close:hover,
.cf-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form Styles */
#cf-booking-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

#cf-booking-form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.cf-btn-confirm {
    background-color: #003F93;
    /* Blue */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 25px;
    font-size: 16px;
    font-weight: bold;
}

.cf-btn-confirm:hover {
    background-color: #002D6B;
}

/* Messages */
#cf-booking-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
    text-align: center;
}

.cf-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.cf-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}