.notification-container{
    width: 350px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.notification-card{
    overflow: hidden;
     opacity: 90%;
    background: #fa5c4a; /* fond rouge */
    color: white; /* texte blanc */
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-left: 5px solid #b02a1a;
    animation: slideIn 0.4s ease;
}

.notification-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-title{
    font-weight: bold;
    font-size: 15px;
    color: white;
}

.notification-body{
    margin-top: 8px;
}

.notification-message{
    font-size: 14px;
    margin-bottom: 6px;
    color: white;
}

.notification-audience{
    color: #ffeaea;
    font-size: 12px;
}

.close-btn{
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: white;
    transition: 0.2s;
}

.close-btn:hover{
    color: #ffd2d2;
    transform: scale(1.2);
}

.notification-empty{
    background: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

@keyframes slideIn{
    from{
        transform: translateX(100%);
        opacity: 0;
    }
    to{
        transform: translateX(0);
        opacity: 1;
    }
}
