body {
    font-family: Arial, sans-serif;
}
        .navbar {
            background-color: #51884D !important; 
        }
        .carousel-inner img {
            width: 100%;
            height: 500px; /* Hauteur réduite pour le slider */
            object-fit: cover;
        }
        .stats-section {
            padding: 50px 0;
            background-color: #f8f9fa;
        }
        .chart-container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
        .table-container {
            margin-top: 30px;
        }
        .navbar-brand {
            margin-right: auto; 
        }
        .navbar-nav-left {
            margin-right: auto; 
        }
        .navbar-nav-right {
            margin-left: auto; 
        }
        /* Style pour la barre de défilement */
        .ticker-container {
            background-color: rgb(255, 255, 255);
            height: 30px;
            overflow: hidden;
            position: relative;
        }
        .ticker-text {            color: rgb(0, 0, 0);
            font-size: 18px;
            position: absolute;
            white-space: nowrap;
            animation: ticker 22s linear infinite;
        }
        @keyframes ticker {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

         /* armoiries img style */
         .armoiries img{
            width: 40px;  
            height: auto;
        }
       
        /* slider img style */
        .carousel-item img{
            filter: grayscale(50%) brightness(40%) contrast(150%);
        }

        /* connexion btn style */
        .connexion_btn{
            background-color: #EEEE14;
        }
        .connexion_btn:hover{
            background-color: #d9ff05;
        }

        /* Style pour le footer */
        .footer {
            background-color: #51884D;
            color: white;
          
            margin-top: 30px;
            height: 70px;
        }
        .footer a {
            color: #ffffff;
            text-decoration: none;
            margin: 0 10px;
            font-size: 18px;
            transition: color 0.3s;
            display: inline-block;
            line-height: 70px; /* Centrer verticalement les liens dans le footer */
            vertical-align: middle;

        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer .social-icons a {
            margin: 0 10px;
            font-size: 24px;
        }
        /* Centrer le texte du carousel */
        .carousel-caption {
            text-align: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;

            }
            .carousel-caption h1 {
                font-size: 3rem;
                font-weight: bold;
                color: #fff;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
                margin-bottom: 20px;
                text-align: center;
            }

        