/**
 * Styling for the notifications overview.
 *
 * - Each row gets its own color, based on the notification level.
 * - Expired notifications will be striked through.
 *
 * @since 1.0.0
 */

.notification_table_row > td > a[href] {
  font-weight: bold;
  color: inherit;
  text-decoration: underline dotted;
}

.notification_table_row.expired {
  text-decoration: line-through;
}

.notification_table_row.info {
  color: var(--gin-color-primary-active);
  background: var(--gin-color-primary-light);
}

.notification_table_row.success {
  color: var(--gin-status-success-text);
  background: var(--gin-status-success-bg);
}

.notification_table_row.warning {
  color: var(--gin-status-warning-text);
  background: var(--gin-status-warning-bg);
}

.notification_table_row.danger {
  color: var(--gin-status-danger-text);
  background: var(--gin-status-danger-bg);
}
