.notification-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: background 0.2s;
}

.notification-item.unread {
    background: #fffdfa;
    border-color: #f3dca4;
}

.notification-item:active {
    background: #f0f0f0;
}

.notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.notification-item.unread .notif-icon {
    background: #fff2c2;
}

.notif-info {
    flex: 1;
}

.notif-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.notif-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.notif-time {
    font-size: 11px;
    color: #999;
}
