.left-sidebar {
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    padding: 1rem;
}

.logo-img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}
/* Styles communs aux cadres */
.box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* ombre légère noire, plus douce */
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.menu-box{
    display: none;
}

.box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Logo spécifique avec cadre identique aux autres boxes */
.logo-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;       /* identique à .box */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.logo-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Logo à l'intérieur du cadre */
.logo-box .logo-img {
    width: 100%;             /* prend toute la largeur disponible dans le cadre */
    max-height: 100px;       /* limite la hauteur pour que ça rentre bien */
    object-fit: contain;     /* garde les proportions sans couper le logo */
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.logo-box .logo-img:hover {
    transform: scale(1.05);
}

/* Menu spécifique */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item a {
    display: block;
    padding: 14px 22px;
    background: linear-gradient(135deg, #4DA68B, #66B89E); /* dégradé vert doux */
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(77, 166, 139, 0.3); /* ombre verte */
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.menu-item a:hover {
    background: linear-gradient(135deg, #3B8E71, #4DA68B); /* teinte plus foncée au hover */
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 6px 14px rgba(59, 142, 113, 0.4); /* ombre plus appuyée */
}



.menu-item a:hover {
    background-color: #005fa3;
    transform: translateX(6px);
}

@media screen and (min-width: 1024px) {
    .menu-box {
        display: block;
    }
}
