/* --- Notifications Page --- */
.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid #F3F4F6;
    cursor: pointer;
    transition: background 0.15s;
}

.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: #F9FAFB; }
.notif-item.unread { background: #FEFCE8; }
.notif-item.unread:hover { background: #FEF9C3; }

.notif-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF2FF;
    border-radius: 50%;
}

.notif-content { flex: 1; min-width: 0; }

.notif-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 2px;
}

.notif-message {
    font-size: 0.825rem;
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notif-time {
    font-size: 0.7rem;
    color: #9CA3AF;
}

.notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4F46E5;
    flex-shrink: 0;
    margin-top: 6px;
}

.notif-delete {
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 8px;
    margin-left: 8px;
    flex-shrink: 0;
    border-radius: 4px;
    transition: all 0.15s;
}
.notif-delete:hover {
    color: #EF4444;
    background: #FEE2E2;
}
