.cc-online-reservation {
    margin: 24px 0;
}

.cc-online-reservation__content {
    padding: 20px 24px;
    border: 1px solid #bdd4f6;
    border-radius: 8px;
    background: #f7fbff;
}

.cc-online-reservation__title {
    margin: 0 0 8px;
    color: #101828;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.cc-online-reservation__text {
    margin: 0 0 16px;
    color: #101828;
    font-size: 16px;
    line-height: 1.45;
}

.cc-online-reservation__button,
.cc-online-reservation__close {
    cursor: pointer;
    border: 0;
    font: inherit;
}

.cc-online-reservation__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 999px;
    background: #5b86d6;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cc-online-reservation__button:hover,
.cc-online-reservation__button:focus-visible {
    background: #416fca;
}

.cc-online-reservation__button:active {
    transform: translateY(1px);
}

.cc-online-reservation__popup {
    position: fixed;
    z-index: 2147483647;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 5vw;
    background: rgba(16, 24, 40, 0.55);
}

.cc-online-reservation__popup[hidden] {
    display: none;
}

.cc-online-reservation__popup-inner {
    position: relative;
    overflow: hidden;
    width: 90vw;
    height: 90vh;
    max-width: 1440px;
    border: 1px solid #bdd4f6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(16, 24, 40, 0.35);
}

.cc-online-reservation__close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #101828;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.18);
    font-size: 28px;
    line-height: 1;
}

.cc-online-reservation__close:hover,
.cc-online-reservation__close:focus-visible {
    color: #416fca;
}

.cc-online-reservation__iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

html.cc-online-reservation-modal-open,
body.cc-online-reservation-modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .cc-online-reservation__content {
        padding: 18px;
    }

    .cc-online-reservation__button {
        width: 100%;
    }

    .cc-online-reservation__popup {
        padding: 16px;
    }

    .cc-online-reservation__popup-inner {
        width: calc(100vw - 32px);
        height: calc(100vh - 32px);
        border-radius: 10px;
    }
}
