html,
body {
    height: 100%;
    margin: 0;
    background-color: #fafafa;
}

.calendly-page {
    max-width: 1250px;
    height: 100vh;
    min-height: 99vh;
    margin: 0 auto;
}

.calendly-inline-widget,
.calendly-inline-widget iframe {
    width: 100%;
    height: 99vh !important;
    min-height: 99vh !important;
}

.close-btn {
    position: fixed;
    top: 3%;
    right: 1%;
    z-index: 1000;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.close-btn:hover {
    background: #000;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.close-btn i {
    color: #fff;
    font-size: 24px;
}

@media (max-width: 600px) {
    .close-btn {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 600px) and (min-resolution: 2dppx) {
    .close-btn {
        width: 72px;
        height: 72px;
    }

    .close-btn i {
        font-size: 32px;
    }
}