


/* =======================
    NOTIFICATIONS
======================= */

.liste-notifications {
    max-width: 700px;
    width: fit-content;
    margin: 2em auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.notification {
    background: var(--bg-doux);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 12px 18px;

    font-size: 1rem;
    font-weight: 500;

    display: flex;
    align-items: center;

    transition: all 0.25s ease;
}

.notification:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
