a
{
    color: #000 !important;
}
a:active,a:hover
{
    color: #000 !important;
}
.menu {
    display: flex;
    padding: 0;
}

.menu li{
    padding: 10px !important;
}

.menu li a {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.5rem !important;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

/* Icône dans cercle */
.menu li a i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10%;
    transition: all 0.3s ease;
}

/* Hover effect */
.menu li a:hover {
    background: #fbfbfb !important;
    color: #000000 !important;
    transform: translateY(-2px);
}

/* Icône hover */
.menu li.active a i {
    background: #000;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Hover effect */
.menu li.active a {
    background: #fbfbfb !important;
    color: #000000 !important;
    transform: translateY(-2px);
}


/* Icône hover */
.menu li a:active i {
    background: #000;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.p-30
{
    padding: 30px;
}
.p-35
{
    padding: 35px;
}
.bg-dark
{
    background-color: #303030 !important;
}
.bg-danger
{
    background-color: #c91b1b !important;
}
.bg-primary
{
    background-color: #226bb4 !important;
}
.bg-secondary
{
    background-color: #219a11 !important;
}

.badge {
    transition: all 0.3s ease;
}
.badge.bg-success {
    background-color: #28a745 !important;
}
.badge.bg-danger {
    background-color: #dc3545 !important;
}
.badge:hover {
    transform: scale(1.1);
}
.notification-item:hover {
    background-color: #f8f9fa;
}