/* #semble-start-kyc.yoti-kyc-button {
    display: none !important;
} */
.semble-kyc-overlay {
    position: fixed;
    inset: 0;
    /* background: rgba(15, 23, 42, 0.75); */
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.semble-kyc-overlay.is-visible {
    display: flex !important;
}

.semble-kyc-overlay-inner {
    position: relative;
    width: min(1100px, 100%);
    height: min(90vh, 780px);
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.35);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.semble-kyc-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #0f172a;
}

.semble-kyc-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.semble-kyc-header h3 {
    margin: 0 0 4px 0;
}

.semble-kyc-status {
    margin: 12px 0;
    color: #475569;
}

.semble-kyc-iframe-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#semble-kyc-iframe {
    flex: 1;
    width: 100%;
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    background: #fff;
}

.semble-kyc-results {
    margin-top: 16px;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #d1d9e6;
    overflow-y: auto;
}

.semble-kyc-results ul {
    margin: 0 0 0 18px;
    padding: 0;
}

body.semble-kyc-open {
    overflow: hidden;
}

