.agre-notif-page__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark, #145222);
}
.agre-notif-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.agre-notif-item {
    background: #fff;
    border: 1px solid var(--border, #d7e0d9);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    box-shadow: 0 1px 4px rgba(20, 82, 34, 0.06);
}
.agre-notif-item.is-unread {
    border-color: rgba(27, 107, 42, 0.45);
    box-shadow: 0 0 0 1px rgba(27, 107, 42, 0.12);
}
.agre-notif-item__when {
    font-size: 0.78rem;
    color: #6b7c70;
    margin-bottom: 0.2rem;
}
.agre-notif-item__title {
    font-size: 0.98rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: #1a2e1f;
}
.agre-notif-item__body {
    font-size: 0.9rem;
    line-height: 1.45;
    color: #3d4f42;
    white-space: pre-wrap;
    word-break: break-word;
}
.agre-notif-item__body--html {
    white-space: normal;
}
.agre-notif-item__body--html a {
    color: var(--primary, #1B6B2A);
    text-decoration: underline;
    word-break: break-all;
}
.agre-notif-item__body--html p {
    margin: 0 0 0.5rem;
}
.agre-notif-item__body--html ul,
.agre-notif-item__body--html ol {
    margin: 0 0 0.5rem 1.1rem;
    padding: 0;
}
.agre-notif-item.is-focus {
    border-color: #1B6B2A;
    box-shadow: 0 0 0 2px rgba(27, 107, 42, 0.2);
}
.agre-notif-item__loading {
    margin-top: 0.35rem;
}
.agre-notif-item__link {
    display: inline-block;
    margin-top: 0.45rem;
    color: var(--primary, #1B6B2A);
    font-weight: 600;
    text-decoration: none;
}
.agre-notif-item__link:hover { text-decoration: underline; }
.agre-notif-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #6b7c70;
    background: #fff;
    border: 1px dashed var(--border, #d7e0d9);
    border-radius: 12px;
}
.agre-notif-empty i {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}
