@charset "UTF-8";

/*!
Theme Name: Atalian - Boite à outils
Version:	1.0.0
Author:		Campus Career
*/
#svg-container {
    width: 100%;
    height: auto;
    /* Ajuste la hauteur en fonction de la largeur */
}

svg {
    width: 100%;
    height: auto;
    max-width: 100%;
    /* Pour s'assurer qu'il ne dépasse pas la taille du conteneur */
}

.logo-atalian {
    height: 4.5rem;
}

ol li::marker {
    color: var(--bs-orange);
}

/* Applique une transition fluide sur l'image au survol */
.mega-menu img {
    transition: border 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
    /* Plus long pour un effet plus smooth */
}

/* Au survol de l'image, applique une bordure blanche */
.mega-menu img:hover {
    border: 2px solid white;
    /* Bordure blanche de 3px */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    /* Optionnel : légère ombre blanche */
}