.page-notif {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}
.notif-header button {
    height: fit-content;
    color: #0001F0;
    border: none;
    background-color: transparent;
    font-weight: 600;
    cursor: pointer;
}
.dark-mode .notif-header button {
    color: #0e0eae;
}

.notif-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    gap: 15px;
}
.notif-item.unread {
    background-color: #e8f4ff;
}

.notif-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}
.notif-avatar img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.dark-mode .notif-item, .dark-mode h2{
    color: #a6a6a6;
}

.dark-mode .notif-item.unread {
    background-color: #535353;
}

.notif-content p {
    margin: 0;
}
.notif-content span {
    font-style: italic;
    color: grey;
}

.vide {
    text-align: center;
}
.dark-mode .vide {
    color: #a6a6a6;
}