.document-notification-page .summary-card strong {
  font-size: 24px;
}

.notification-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.notification-tab-button {
  border: 1px solid #d9e2ee;
  background: #fff;
  color: #475569;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
}

.notification-tab-button.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.notification-tab-panel {
  display: none;
}

.notification-tab-panel.active {
  display: block;
}

.notification-settings-grid,
.notification-template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.notification-template-grid .field-full,
.notification-settings-grid .field-full {
  grid-column: 1 / -1;
}

@media (max-width: 880px) {
  .notification-settings-grid,
  .notification-template-grid {
    grid-template-columns: 1fr;
  }
}

.notification-table-wrap {
  overflow: auto;
}

.notification-template-hint {
  margin-top: 12px;
  color: #64748b;
}

.notification-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  font-size: 12px;
  font-weight: 800;
}

.notification-status-pill.sent,
.notification-status-pill.active {
  background: #dcfce7;
  color: #166534;
}

.notification-status-pill.failed,
.notification-status-pill.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.notification-status-pill.queued,
.notification-status-pill.sending,
.notification-status-pill.warning {
  background: #fef3c7;
  color: #92400e;
}

.notification-template-row {
  cursor: pointer;
}

.notification-template-row:hover {
  background: #f8fbff;
}
