/**
 * Global Loading Indicator Styles
 * Duta Damai Kalimantan Selatan - Blog System
 */

.global-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Always allow clicks through when hidden */
}

.global-loading-overlay:not(.hidden) {
    pointer-events: auto; /* Only block when visible */
}

.global-loading-overlay.hidden {
    opacity: 0;
    display: none !important;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #2980b9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 20px;
    color: #2980b9;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Dark mode support */
body.dark-mode .global-loading-overlay {
    background: rgba(26, 26, 26, 0.95);
}

body.dark-mode .loading-spinner {
    border-color: #2d2d2d;
    border-top-color: #5dade2;
}

body.dark-mode .loading-text {
    color: #5dade2;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .loading-spinner {
        width: 50px;
        height: 50px;
        border-width: 4px;
    }

    .loading-text {
        font-size: 14px;
        margin-top: 15px;
    }
}
