.notification-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notification-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  cursor: pointer;
}

.notification-row__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.notification-row__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.notification-row__account {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
}

.notification-row__message {
  font-size: 14px;
  color: #374151;
}

.notification-row--unread .notification-row__message {
  font-weight: 700;
  color: #111827;
}

.notification-row__time {
  font-size: 12px;
  color: #9ca3af;
}

.notification-row__dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
}
