/**
 * S-Cloud — OCR modal CSS (v2.2.54)
 */
.sc-ocr-modal {
    position: fixed; inset: 0;
    background: rgba(20,14,30,.6);
    backdrop-filter: blur(3px);
    z-index: 1090;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.sc-ocr-inner {
    background: #fff; border-radius: 14px;
    max-width: 680px; width: 100%; max-height: 90vh; overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.sc-ocr-head, .sc-ocr-foot {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #eef0f3;
    display: flex; justify-content: space-between; align-items: center;
}
.sc-ocr-foot { border-bottom: none; border-top: 1px solid #eef0f3; gap: 8px; }
.sc-ocr-close {
    background: none; border: none;
    font-size: 1.4rem; width: 30px; height: 30px;
    border-radius: 6px; cursor: pointer; color: #6b7280;
}
.sc-ocr-close:hover { background: #f3f4f6; }
.sc-ocr-body { padding: 1.25rem; overflow-y: auto; flex: 1; }
