﻿

/*@import url('style.css');*/

/* Spinner Overlay */
/*.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);*/ /* خلفية داكنة */
    /*z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);*/ /* تمويه الخلفية */
    /*animation: fadeIn 1s ease-in-out;*/ /* تأثير الظهور */
/*}

.spinner-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;*/ /* تأثير الحركة الديناميكية */
/*}*/

/* Spinner Animation */
/*.spinner {
    border: 16px solid rgba(255, 255, 255, 0.2);*/ /* إطار خفيف شبه شفاف */
    /*border-top: 16px solid var(--brand-color);*/ /* لون داكن بدلاً من اللون الأزرق */
    /*border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1.5s linear infinite;*/ /* دوران مستمر */
    /*box-shadow: 0 0 20px var(--brand-color);*/ /* توهج بلون داكن */
/*}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--brand-color);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px var(--brand-color);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.loading-text {
    margin-top: 18px;
    font-size: 1.5rem;
    color: #fff !important;
    font-weight: bold;
    animation: text-glow 2s ease-in-out infinite alternate, slideIn 3s ease-in-out infinite;
}

@keyframes text-glow {
    0% {
        text-shadow: 0 0 5px var(--brand-color), 0 0 10px var(--brand-color);
    }

    100% {
        text-shadow: 0 0 20px var(--brand-color), 0 0 30px var(--brand-color);
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(-10px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}*/
/*END Spinner Overlay*/



/* Spinner Overlay */
@import url('style.css');

/* Spinner Overlay */
/* Spinner Overlay */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* خلفية بسيطة */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.2); /* إطار خفيف */
    border-top: 4px solid #21c68b; /* لون بسيط */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* حركة بسيطة */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%; /* تأكد من أن الحاوية تأخذ كامل الارتفاع */
}

.loading-text {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}