/* =========================================
      NOTIFICATIONS PAGE — Thông báo
========================================= */

.noti-container {
    max-width: 720px;
    margin: auto;
    padding: 16px;
}

.title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.group-title {
    font-size: 15px;
    font-weight: 700;
    margin: 18px 0 12px;
    color: #3b4557;
}

.noti-item {
    display: flex;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 12px;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.noti-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.noti-text {
    font-size: 14px;
    line-height: 1.35;
}

.noti-text small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #7c8a98;
}

/* Desktop */
@media (min-width: 900px) {
    .noti-container {
        max-width: 900px;
        padding: 24px 0;
    }

    .noti-item {
        padding: 16px;
    }
}