/* تنسيقات شاشة التحميل */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    max-width: 100%;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s ease-in-out infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* تنسيقات متجاوبة لشاشة التحميل */
@media (max-width: 576px) {
    #preloader {
        width: 100%;
        height: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .spinner {
        width: 40px;
        height: 40px;
    }
}
