/********** My Own CSS **********/
.calendar iframe {
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.card img {
    max-height: 200px;
    object-fit: cover;
}

/* Styles pour les indicateurs du carrousel */
.carousel-indicators button {
    /* Rendre l'indicateur visible */
    display: inline-block; /* Assure qu'il est affiché */
    width: 15px!important; /* Taille des indicateurs (ajustez) */
    height: 15px!important;
    margin: 0 5px; /* Espace entre les indicateurs */
    border: 0; /* Retirer la bordure par défaut si présente */
    border-radius: 50%; /* Ronds */
    padding: 0; /* Enlever le padding par défaut */
    opacity: 1; /* Transparence par défaut */
    transition: opacity 0.6s ease, background-color 0.6s ease; /* Animation de transition */
    background-color: rgb(0, 0, 0) !important; /* Couleur de fond par défaut */
}

.carousel-indicators .active {
    /* Rendre l'indicateur actif opaque et changer sa couleur */
    opacity: 1; /* Entièrement visible */
    background-color: rgb(102, 0, 255); /* Exemple : Bleu pour l'indicateur actif */
}

/* Optionnel : Ajuster la position des indicateurs si nécessaire */
.carousel-indicators {
    bottom: -20px; /* Distance du bas du carrousel (ajustez) */
    z-index: 15; /* Assure qu'ils sont au-dessus du contenu */
}


/* Styles pour les flèches de navigation du carrousel */
/* Si les icônes par défaut ne s'affichent pas, assurez-vous que le CSS de Bootstrap les définissant est chargé */
/* Les styles par défaut sont sur les classes .carousel-control-prev-icon et .carousel-control-next-icon */
/* Ces classes utilisent background-image ou des bordures CSS pour créer les icônes */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    /* Assurez-vous qu'ils ont une taille et sont affichés */
    display: inline-block;
    width: 5rem;  /* Taille standard de l'icône (ajustez) */
    height: 5rem;
    /* Le CSS de Bootstrap doit définir le background-image ici */
}

/* Si vos propres styles écrasent les icônes ou si vous voulez une couleur différente */
/* Vous pouvez essayer d'appliquer un filtre ou une couleur de fond si l'icône est blanche par défaut */
.carousel-control-prev-icon {
    /* Exemple: Filtrer l'icône SVG blanche en bleu si elle est là */
    filter: invert(70%) sepia(100%) saturate(2000%) hue-rotate(220deg) brightness(100%) contrast(100%);
}
.carousel-control-next-icon {
     /* Exemple: Filtrer l'icône SVG blanche en bleu si elle est là */
    filter: invert(70%) sepia(100%) saturate(2000%) hue-rotate(220deg) brightness(100%) contrast(100%);
}


/* Si vous voulez utiliser des chevrons Font Awesome à la place */
/* 1. Assurez-vous que Font Awesome CSS est chargé */
/* 2. Remplacez les spans .carousel-control-prev-icon et .carousel-control-next-icon dans le HTML */
/* par des balises <i> avec les classes Font Awesome (ex: <i class="fa fa-chevron-left"></i>) */
/* 3. Ajoutez du CSS pour positionner et styler ces icônes Font Awesome à l'intérieur des boutons */
/* .carousel-control-prev i, .carousel-control-next i { ... votre style pour l'icône ... } */


/* Optionnel : Ajuster le look des boutons Précédent/Suivant */
.carousel-control-prev,
.carousel-control-next {
    width: 40px; /* Largeur du bouton (ajustez) */
    /* background-color: rgba(0,0,0,0.3); Exemple : fond semi-transparent au survol  */
}


/* Styles pour cacher les champs honeypot */
.important-fields {
    display: none !important; /* !important pour s'assurer qu'il est caché */
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important; /* Envoyer hors écran */
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}





/********** Template CSS **********/
:root {
    --primary: #1363C6;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 15px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 15px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -75px;
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}



/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}
  
.case-item:hover img {
    transform: scale(1.2);
}
  
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/

.overlay-top::before,
.overlay-bottom::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 85px;
  left: 0;
  z-index: 1;
}

.overlay-top::before {
  top: 0;
  background: url(../img/overlay-top.png) top center no-repeat;
  background-size: contain;
}

.overlay-bottom::after {
  bottom: 0;
  background: url(../img/overlay-bottom.png) bottom center no-repeat;
  background-size: contain;
}




/********** added CSS **********/

/* Styles personnalisés pour les boutons de l'event card */

/* Style pour le bouton "Détails" (Fond blanc, Contour bleu, Texte noir) */
/* Cible la balise <a> avec les classes .btn et .btn-details-custom */

.btn-light-custom {
  background-color: #ffffff; /* Fond blanc */
  border: 1px solid #0000e1; /* Contour bleu (ajustez la couleur si besoin) */
  color: #111111; /* Texte noir (ajustez la couleur si besoin) */
  /* Assurez-vous que le padding, la taille de police, etc. sont cohérents avec les autres boutons (.btn) */
  /* Si vous appliquez aussi la classe .btn, ces propriétés peuvent être héritées */
  text-transform: uppercase;
  font-weight: 600;
   padding: .375rem .75rem; /* Exemple de padding standard Bootstrap */
   text-align: center;
   text-decoration: none; /* Important pour les balises <a> */
   display: inline-block; /* Pour qu'w-100 fonctionne bien */
   font-size: 1rem; /* Exemple de taille de police standard Bootstrap */
   border-radius: .25rem; /* Exemple de bord arrondi standard Bootstrap */
   transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; /* Transition pour les effets hover */
}

.btn-light-custom:hover {
    /* Styles au survol */
    background-color: #0000e1; /* Fond bleu au survol */
    border-color: #0000c8; /* Contour bleu au survol */
    color: #ffffff; /* Texte blanc au survol */
}

/* Style pour le bouton "S'inscrire" (Fond bleu, Contour bleu/transparent, Texte blanc) */
/* Cible la balise <a> avec les classes .btn et .btn-register-custom */
.btn-dark-custom {
  background-color: #333333; /* Fond bleu */
  border: 1px solid #0000c8; /* Contour bleu (vous pouvez mettre transparent si vous ne voulez pas de contour visible) */
  color: #ffffff; /* Texte blanc */
  text-transform: uppercase;
  font-weight: 600;
  /* Assurez-vous que le padding, la taille de police, etc. sont cohérents */
   padding: .375rem .75rem; /* Exemple de padding standard Bootstrap */
   text-align: center;
   text-decoration: none; /* Important pour les balises <a> */
   display: inline-block; /* Pour qu'w-100 fonctionne bien */
    font-size: 1rem; /* Exemple de taille de police standard Bootstrap */
    border-radius: .25rem; /* Exemple de bord arrondi standard Bootstrap */
   transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; /* Transition pour les effets hover */
}

.btn-dark-custom:hover {
    /* Styles au survol */
    background-color: #0000e1; /* Fond bleu au survol */
    border-color: #0000c8; /* Contour bleu au survol */
    color: #ffffff; /* Texte blanc au survol */
}

.btn-blue-custom {
  background-color: #0000e1; /* Fond bleu */
  border: 1px solid #0000c8; /* Contour bleu (vous pouvez mettre transparent si vous ne voulez pas de contour visible) */
  color: #ffffff; /* Texte blanc */
  text-transform: uppercase;
  font-weight: 600;
  /* Assurez-vous que le padding, la taille de police, etc. sont cohérents */
   padding: .8rem 1.6rem; /* Exemple de padding standard Bootstrap */
   text-align: center;
   text-decoration: none; /* Important pour les balises <a> */
   display: inline-block; /* Pour qu'w-100 fonctionne bien */
    font-size: 1rem; /* Exemple de taille de police standard Bootstrap */
    border-radius: 0.7rem; /* Exemple de bord arrondi standard Bootstrap */
   transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; /* Transition pour les effets hover */
}

.btn-blue-custom:hover {
    /* Styles au survol */
    background-color: #ffffff; /* Fond bleu au survol */
    border-color: #0000c8; /* Contour bleu au survol */
    color: #000000; /* Texte blanc au survol */
}
/* Si vous utilisez les classes .btn DE Bootstrap en plus de vos classes personnalisées, */
/* certaines propriétés comme padding, text-align, display, etc., seront déjà gérées par .btn */
/* et vous n'aurez qu'à définir les couleurs et bordures dans vos classes personnalisées. */
/* Dans ce cas, l'HTML serait <a class="btn btn-details-custom w-100">Détails</a> */
/* et le CSS des classes .btn-details-custom et .btn-register-custom serait plus court, */
/* ne contenant que les surcharges de couleur et de bordure. */




.thumbnail  {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.thumbnail  img {
  margin-bottom: -5px;
}


.thumbnail  span.price {
  position: absolute;
  right: -30px;
  top: -50px;
  background-color: #0000e1;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: inline-block;
  transition: all .3s;
}
.thumbnail  span.free {
  background-color: #f44336!important;
}

.thumbnail  span.price h6 {
  margin-top: 72px;
  margin-left: 8px;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

.thumbnail  span.price em {
  font-size: 10px;
  font-weight: 500;
  font-style: normal;
  vertical-align: top;
}


/* .events_item:hover .thumb span.price {
  transform: scale(1.2);
} */

/* Style pour l'image principale de la page de détails de l'événement */
.event-detail-image {
  max-height: 600px; /* Définissez ici la hauteur maximale souhaitée (par exemple 400px, 500px, etc.) */
  object-fit: cover; /* Très important : assure que l'image couvre la zone sans être déformée, rogne si nécessaire */
  width: 100%; /* S'assure qu'elle prend toujours 100% de la largeur de sa colonne */
  height: auto; /* Permet à la hauteur de s'ajuster tout en respectant max-height */
}


.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}
.d-flex {
  display: flex !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}


/* Placer ce CSS dans <style> ou dans votre fichier CSS */

.create-event-floating-button {
    position: fixed;
    right: 0; /* Environ 6 unités Tailwind, ajustez si besoin */
    top: 50%;
    transform: translateY(-50%) translateX(0); /* Centrage vertical et état initial (ouvert) */
    background-color: #3b82f6; /* bg-blue-600 */
    /* border-radius: 9999px; rounded-full */
    /* MODIFICATION ICI pour les bords arrondis du conteneur principal */
    border-top-left-radius: 9999px; /* Bord supérieur gauche très arrondi */
    border-bottom-left-radius: 9999px; /* Bord inférieur gauche très arrondi */
    border-top-right-radius: 0;   /* Bord supérieur droit carré */
    border-bottom-right-radius: 0; /* Bord inférieur droit carré */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out; /* transition-all duration-300 ease-in-out */
    z-index: 50; /* z-50 */
}

/* État "fermé" du bouton flottant */
.create-event-floating-button.closed {
    /* La largeur du bouton de toggle est d'environ 48px (32px icône + 2*8px padding = 48px) */
    /* Ajustez 48px si vous modifiez la taille du chevron */
    transform: translateY(-50%) translateX(calc(100% - 48px)); 
}

.create-event-button {
    display: flex;
    align-items: center;
    padding: 12px 16px; /* py-3 px-4 */
    color: #fff; /* text-white */
    font-weight: 700; /* font-bold */
    text-decoration: none; /* Supprime le soulignement par défaut des liens */
}

.create-event-icon {
    width: 24px; /* h-6 w-6 */
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    margin-right: 8px; /* space-x-2 */
}

.create-event-text {
    white-space: nowrap; /* whitespace-nowrap */
    /* Pas de transition directe sur la visibilité, le JS gérera 'hidden' */
}

.create-event-toggle-button {
    padding: 8px; /* p-2 */
    background-color: #2563eb; /* bg-blue-700 */
    border: none;
    cursor: pointer;
    color: #fff;
    border-top-right-radius: 9999px; /* rounded-r-full */
    border-bottom-right-radius: 9999px; /* rounded-r-full */
    display: flex; /* Pour centrer l'icône */
    align-items: center; /* Pour centrer l'icône */
    justify-content: center; /* Pour centrer l'icône */
    transition: background-color 0.3s ease-in-out; /* hover:bg-blue-800 */
}

.create-event-toggle-button:hover {
    background-color: #1d4ed8; /* hover:bg-blue-800 */
}

.create-event-toggle-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); /* focus:ring-2 focus:ring-blue-500 */
}

.create-event-toggle-icon {
    width: 24px; /* h-6 w-6 */
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease-in-out; /* transition-transform duration-300 */
}

/* Rotation de l'icône lors de l'état "fermé" */
.create-event-toggle-icon.rotate-180 {
    transform: rotate(180deg);
}

/* Masquer le texte */
.hidden {
    display: none;
}

/* Media query pour les grands écrans (lg:right-10) */
@media (min-width: 1024px) { /* La breakpoint 'lg' de Tailwind est 1024px */
    .create-event-floating-button {
        right: 0; /* Environ 10 unités Tailwind */
    }
}