/* Sticky Button */
#cliniko-modal-btn {
    position: fixed;
    bottom: 20px;
    right: 100px;
    background: #36bc9b;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 9999;
}
#cliniko-modal-btn:hover {
    background: #005e47;
}

/* Modal Overlay */
#cliniko-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
}

/* Modal Box */
.cliniko-modal-box {
    background: #ffffff;
    width: 90%;
    max-width: 900px;
    height: 90vh;
    margin: 5vh auto;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.cliniko-header {
    background: #36bc9b;
    color: #ffffff;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#cliniko-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
}

/* Iframe */
.cliniko-iframe-wrap {
    flex: 1;
    overflow-y: auto;
}
.cliniko-iframe-wrap iframe {
    width: 100%;
    min-height: 100%;
    border: 0;
}

/* Mobile */
@media (max-width: 768px) {
    #cliniko-modal-btn {
        right: 20px;
        width: calc(100% - 40px);
    }

    .cliniko-modal-box {
        width: 95%;
        height: 95vh;
        margin: 2.5vh auto;
    }
}
