/* Body */
@font-face {
    font-family: Didact_Gothic;
    src: url(../../fonts/Didact_Gothic/DidactGothic-Regular.ttf);
    font-display: swap;
}

.cl-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: block;
    overflow: hidden;
}

.cl-modal-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 80%;
    max-width: 600px;
    max-height: 90%;
    overflow-y: auto;
    transition: height 0.3s ease, width 0.3s ease;
}

.cl-modal-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.cl-modalmanager-navbar-title {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: lighter;
    background-color: white;
    box-shadow: 1px 1px 5px 1px rgba(128, 128, 128, 0.2);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.cl-modal-navbar-left {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #000000;
}


.cl-modal-window-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: -webkit-fill-available;
    margin: 20px;
}

#cl-stripe-form {
    width: 100%;
}

#cl-stripe-paymentsubmit {
    width: 100%;
    height: 45px;
    font-size: 17px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    background-color: black;
    color: white;
    border: 1px solid black;
    transition: background-color 0.3s, color 0.3s;
}


#cl-stripe-paymentsubmit:hover {
    background-color: white;
    color: black;
}

@media (max-width: 768px) {
    .cl-modal-window {
        width: 100%;
        height: 100vh;
        max-height: unset;
        border-radius: 0;
    }
}

.reservation-overview {
    font-family: "system-ui", sans-serif;
    font-weight: lighter;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333;
}

.reservation-overview h2 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #07a6dc;
}

.reservation-overview p {
    margin-bottom: 20px;
    font-size: 1em;
    color: #333;
}

.reservation-details {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
    background: #fff;
}

.detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.detail:last-child {
    margin-bottom: 0;
}

.pay-now-btn {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1em;
    font-weight: lighter;
    border: none;
    border-radius: 8px;
    color: #fff;
    background: #07a6dc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pay-now-btn:hover {
    background: #187b9d;
}


.place-order-container h2 {
    margin: 0;
    margin-top: 20px;
}


#place-order-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 600px;
}

.place-order-container {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.selected-date-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.order-selected-dates {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 40px);
    max-width: 600px;
}


.floating-label input {
    background-color: var(--contrast-item-background);
}



@media (max-width: 500px) {
    .order-selected-dates {
        width: 100%;
    }
}