/* static/admin_assets/css/custom.css */

/* --- GLOBAL LOADER --- */
#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.85);
    /* Hafif şeffaf beyaz arka plan */
    z-index: 9999;
    /* Tüm menülerin ve modalların üstünde çıksın */
    display: none;
    /* Varsayılan olarak kapalı (d-none ile yönetilecek) */
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#global-loader .spinner-border {
    width: 3rem;
    height: 3rem;
    color: #0d6efd;
    /* Bootstrap Primary Rengi */
}

#global-loader .loader-text {
    margin-top: 15px;
    font-weight: 500;
    color: #333;
}