/* Loading Overlay Styles */
#loadingOverlay {
    display: none;
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    margin: 0;
    padding: 0;
}

#loadingOverlay.show {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.loading-content {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    width: 400px;
}

@media (max-width: 768px) {
    .loading-content {
        padding: 1.5rem;
        width: 85%;
    }
    
    .loading-content i {
        font-size: 2rem !important;
    }
    
    .loading-content .loading-message {
        font-size: 14px !important;
    }
    
    .loading-content .loading-note {
        font-size: 12px !important;
    }
}

.loading-content i {
    color: rgba(0, 36, 105, 1);
    margin-bottom: 1rem;
}

.loading-content p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.loading-content .loading-message {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.loading-content .loading-note {
    font-size: 14px;
    color: #666;
}
