﻿.button-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #007bff; /* Couleur bleue */
    text-decoration: none;
    border: 2px solid #007bff; /* Même couleur que le fond */
    border-radius: 5px; /* Coins arrondis */
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

    .button-link:hover {
        background-color: #0056b3; /* Couleur plus sombre au survol */
        color: #ffffff; /* Texte blanc */
        text-decoration: none; /* Assurez-vous que le lien reste sans soulignement */
    }

    .button-link:active {
        background-color: #003f7f; /* Couleur encore plus sombre lorsqu'il est actif */
    }

#wrapper {
    padding: 20px;
}
.responsive {
    padding: 0 6px;
    float: left;
    width: 13%;
}
.loading-spinner {
    display: none; 
    position: fixed;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    display: inline-block;
    width: 45px;
    height: 45px;
    border: 7px solid rgba(0, 0, 0, 0.1); /* Bordures gris clair */
    border-top: 7px solid #3498db; /* #3498db Bordure supérieure bleue #b5e1eb */
    border-right: 7px solid #edf0f5; /* #e74c3c Bordure droite rouge #edf0f5*/
    border-bottom: 7px solid #abd7db; /* #f39c12 Bordure inférieure jaune #abd7db */
    border-left: 7px solid #cad6d9; /* #2ecc71 Bordure gauche verte #cad6d9 */
    border-radius: 50%;
    animation: spin 1.5s linear infinite; /* Animat*/
}
#divhaut {
    border-radius: 10px;
    text-align: center;
    width: 100%;
    position: relative;
    top: 0px;
    /*background-color: #0B3E9F;*/
    background-color: steelblue;
    color: white;
}
.button {
    border-radius: 8px;
    background-color: transparent; /* Green */
    border: 1px solid steelblue;
    border-left-color: #ffffff; /* Couleur plus claire */
    border-top-color: #ffffff;
    border-right-color: #4682b4; /* Couleur plus foncée */
    border-bottom-color: #4682b4;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    margin: 2px 2px;
    cursor: pointer;
    padding: 6px 6px;
    color: black;
}
    .button:hover {
        color: white !important;
        background-color: #008CBA !important;
    }
