.notification-icon {
    position: absolute;
    cursor: pointer;
    font-size: 20px;
    margin-right: 20px;
    top: 15px;
    left: 20px;
    animation: pulse 1s infinite ; /* Applique l'animation */
    z-index:1000;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.514);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
       
    }

    70% {
        transform: scale(1);
       
    }

    100% {
        transform: scale(0.95);
       
    }
}

#notification-count {
    position: absolute;
    text-align:center;
    color: rgb(255, 167, 0);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 25px;
}

.notification-list {
    position: absolute;
    top: 36px;
    left: 36px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 4px;
    color:black;
    font-size:0.8em;
}

.notification-item {
    padding: 0px;
    border-bottom: 1px solid #eee;
    color:black;
    font-size:12px;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background-color: #f5f5f5;
}
