﻿.initial-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #ffffff; /* رنگ پس‌زمینه در صورت نیاز */
}

.logo-loader-wrapper {
    position: relative;
    width: 120px; /* اندازه کل دایره لودینگ */
    height: 120px; /* اندازه کل دایره لودینگ */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.loader-logo {
    width: 80px; /* اندازه لوگو (باید از عرض کانتینر کوچکتر باشد تا داخل حلقه جا شود) */
    height: auto;
    z-index: 2; /* نمایش لوگو روی لودینگ */
}

.loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #e0e0e0; /* رنگ پس‌زمینه حلقه */
    border-top: 4px solid #117a56; /* رنگ سبز مشابه فلش لوگوی شما */
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
