/* PDF Export Overlay Styles */
#scm-pdf-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 53, 64, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scm-pdf-overlay-content {
    text-align: center;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
}

.scm-pdf-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #29ddc9;
    border-radius: 50%;
    animation: scm-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes scm-spin {
    to { transform: rotate(360deg); }
}

.scm-pdf-status {
    font-size: 18px;
    margin-bottom: 20px;
}

.scm-pdf-progress {
    width: 300px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.scm-pdf-progress-bar {
    height: 100%;
    background: #FFC107;
    width: 0%;
    transition: width 0.3s ease;
}

/* Button override for PDF download */
.scm-pdf-download-btn {
    cursor: pointer;
}
