﻿/*SPINNER*/

#loading-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

.loading-text {
    color: white;
    font-size: 18px;
    margin-top: 20px; /* distance du texte sous le spinner */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*FIN SPINNER*/

/*SPINNER DES TABS*/

/* Ajustement du spinner pour les onglets */
.tab-loading-spinner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px; /* Centré verticalement */
    width: 100%;
}

    .tab-loading-spinner .spinner {
        border: 5px solid #f3f3f3;
        border-top: 5px solid #3498db;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: spin 1s linear infinite;
    }

    .tab-loading-spinner .loading-text {
        color: #333;
        font-size: 16px;
        margin-top: 10px; /* Distance entre le texte et la roue */
    }

/* Animation du spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Cacher le spinner après le chargement */
.hidden {
    display: none !important;
}

/*FIN SPINNER DES TABS*/
