/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 24 2026 | 03:21:52 */
#csl-page-spinner {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.6);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
#csl-page-spinner.active {
    display: flex;
}
#csl-page-spinner .spinner-ring {
    width: 48px; height: 48px;
    border: 5px solid #e0e0e0;
    border-top-color: #00008B;
    border-radius: 50%;
    animation: csl-spin 0.7s linear infinite;
}
@keyframes csl-spin {
    to { transform: rotate(360deg); }
}
