﻿/* ===== Overlay خلفية شفافة احترافية ===== */
.upload-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 72, 107, 0.25); /* نفس ألوان التصميم */
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ===== Spinner إبداعي ===== */
.upload-spinner {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== نص تحت السبينر ===== */
.upload-loading-text {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 6px rgba(0,0,0,0.4);
    text-align: center;
}
