#notification-report-page.notification-report-page {
  --nr-surface: #ffffff;
  --nr-border: #e0e7f2;
  --nr-border-soft: #ebf0f8;
  --nr-text: #1f2638;
  --nr-text-muted: #5f6781;
  --nr-bg-soft: #f7f9fd;
  --nr-primary: #2c5cc5;
  --nr-primary-strong: #244da8;

  max-width: 1320px;
  margin: 0 auto;
  padding: 20px;
}

#notification-report-page .nr-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

#notification-report-page .nr-title {
  margin: 0;
  color: var(--nr-text);
  font-size: clamp(2rem, 3.7vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

#notification-report-page .nr-subtitle {
  margin: 8px 0 0;
  color: var(--nr-text-muted);
  font-size: 14px;
}

#notification-report-page .nr-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

#notification-report-page .nr-kpi-card {
  background: var(--nr-surface);
  border: 1px solid var(--nr-border);
  border-radius: 10px;
  padding: 14px;
}

#notification-report-page .nr-kpi-card.is-seen {
  border-color: #dcefe4;
}

#notification-report-page .nr-kpi-card.is-unseen {
  border-color: #f7e7c3;
}

#notification-report-page .nr-kpi-card.is-proof {
  border-color: #d2e5f9;
}

#notification-report-page .nr-kpi-card.is-reminder {
  border-color: #e5d8f8;
}

#notification-report-page .nr-kpi-label {
  font-size: 12px;
  color: #6f7891;
}

#notification-report-page .nr-kpi-value {
  margin-top: 4px;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  color: #1c2333;
}

#notification-report-page .nr-kpi-meta {
  margin-top: 6px;
  font-size: 12px;
  color: #5f6781;
}

#notification-report-page .nr-filters-card,
#notification-report-page .nr-table-card,
#notification-report-page .nr-loading,
#notification-report-page .nr-empty-state {
  background: var(--nr-surface);
  border: 1px solid var(--nr-border);
  border-radius: 10px;
}

#notification-report-page .nr-filters-card {
  padding: 14px;
  margin-bottom: 16px;
}

#notification-report-page .nr-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--nr-text);
  margin-bottom: 10px;
}

#notification-report-page .nr-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  align-items: end;
}

#notification-report-page .nr-label {
  display: block;
  margin-bottom: 4px;
  color: #6e778f;
  font-size: 12px;
}

#notification-report-page .nr-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d8dfea;
  border-radius: 6px;
  font-size: 14px;
  color: var(--nr-text);
  background: #fff;
  min-height: 44px;
  transition: border-color 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

#notification-report-page .nr-input:focus {
  outline: none;
  border-color: #9ab2e6;
  box-shadow: 0 0 0 3px rgba(44, 92, 197, 0.15);
}

#notification-report-page .nr-filter-actions,
#notification-report-page .nr-pagination-actions,
#notification-report-page .nr-modal-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#notification-report-page .nr-btn {
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  min-height: 44px;
  padding: 11px 16px;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#notification-report-page .nr-btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

#notification-report-page .nr-btn:active:not(:disabled) {
  transform: translateY(0);
}

#notification-report-page .nr-btn:focus-visible,
#notification-report-page .nr-input:focus-visible,
#notification-report-page .nr-modal-close:focus-visible {
  outline: 2px solid rgba(44, 92, 197, 0.5);
  outline-offset: 2px;
}

#notification-report-page .nr-btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

#notification-report-page .nr-btn-primary {
  border: 1px solid var(--nr-primary);
  background: var(--nr-primary);
  color: #fff;
}

#notification-report-page .nr-btn-primary:hover:not(:disabled) {
  background: var(--nr-primary-strong);
  border-color: var(--nr-primary-strong);
  box-shadow: 0 6px 14px rgba(44, 92, 197, 0.2);
}

#notification-report-page .nr-btn-secondary {
  border: 1px solid #d8dfea;
  background: #fff;
  color: #2c4069;
}

#notification-report-page .nr-btn-secondary:hover:not(:disabled) {
  border-color: #b9c9e4;
  background: #f7faff;
}

#notification-report-page .nr-btn.is-compact {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
}

#notification-report-page .nr-error {
  background: #ffebee;
  border: 1px solid #ef5350;
  border-radius: 8px;
  color: #b71c1c;
  padding: 12px;
  margin-bottom: 16px;
}

#notification-report-page .nr-loading {
  padding: 44px;
  text-align: center;
  color: #6e778f;
}

#notification-report-page .nr-empty-state {
  padding: 56px 20px;
  text-align: center;
  color: var(--nr-text-muted);
}

#notification-report-page .nr-empty-icon {
  font-size: 44px;
  color: #8da0c7;
  margin-bottom: 10px;
}

#notification-report-page .nr-empty-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: #36405c;
}

#notification-report-page .nr-empty-text {
  font-size: 14px;
  color: #637092;
  margin: 8px 0 0;
}

#notification-report-page .nr-table-wrap {
  overflow: auto;
}

#notification-report-page .nr-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

#notification-report-page .nr-table thead tr {
  background: var(--nr-bg-soft);
  border-bottom: 1px solid var(--nr-border);
}

#notification-report-page .nr-table th,
#notification-report-page .nr-table td {
  padding: 12px;
  border-bottom: 1px solid var(--nr-border-soft);
  text-align: left;
}

#notification-report-page .nr-table th {
  font-size: 12px;
  font-weight: 700;
  color: #4c5672;
  letter-spacing: 0.02em;
}

#notification-report-page .nr-table tbody tr {
  transition: background-color 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

#notification-report-page .nr-table tbody tr:hover {
  background: #f8fafe;
}

#notification-report-page .nr-main-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--nr-text);
}

#notification-report-page .nr-main-text.is-normal {
  font-weight: 500;
}

#notification-report-page .nr-secondary-text {
  margin-top: 2px;
  font-size: 12px;
  color: #6e778f;
}

#notification-report-page .nr-secondary-text.is-uppercase {
  text-transform: uppercase;
}

#notification-report-page .nr-cell-center {
  text-align: center;
}

#notification-report-page .nr-date-cell {
  font-size: 13px;
  color: #49516a;
}

#notification-report-page .nr-pill {
  display: inline-block;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 600;
}

#notification-report-page .nr-pill.is-success {
  background: #e5f7eb;
  color: #1c6f39;
}

#notification-report-page .nr-pill.is-warning {
  background: #fff5dd;
  color: #8a6509;
}

#notification-report-page .nr-pill.is-proof {
  background: #e3f1ff;
  color: #0b4c87;
}

#notification-report-page .nr-pill.is-muted {
  background: #f2f4f8;
  color: #56607b;
}

#notification-report-page .nr-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  background: var(--nr-bg-soft);
  border-top: 1px solid var(--nr-border-soft);
  font-size: 13px;
  color: #5b6480;
}

#notification-report-page .nr-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(14, 19, 35, 0.72);
  padding: 16px;
}

#notification-report-page .nr-modal {
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  overflow-y: auto;
  border: 1px solid #dce4f3;
  border-radius: 10px;
  background: #fff;
}

#notification-report-page .nr-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid #e8edf7;
}

#notification-report-page .nr-modal-title {
  margin: 0;
  font-size: 18px;
  color: var(--nr-text);
}

#notification-report-page .nr-modal-close {
  border: none;
  background: transparent;
  color: #7e87a3;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

#notification-report-page .nr-modal-content {
  padding: 18px;
  display: grid;
  gap: 14px;
}

#notification-report-page .nr-detail-grid {
  display: grid;
  gap: 12px;
}

#notification-report-page .nr-detail-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#notification-report-page .nr-detail-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#notification-report-page .nr-detail-card {
  border: 1px solid #e8edf7;
  border-radius: 8px;
  padding: 10px;
}

#notification-report-page .nr-detail-card.is-checklist {
  border-color: #dbeceb;
  background: #f6fffe;
}

#notification-report-page .nr-detail-label {
  font-size: 11px;
  color: #6e778f;
  text-transform: uppercase;
}

#notification-report-page .nr-detail-label.is-teal {
  color: #2f6260;
}

#notification-report-page .nr-detail-title {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nr-text);
}

#notification-report-page .nr-detail-value {
  margin-top: 4px;
  font-size: 13px;
  color: #24314e;
}

#notification-report-page .nr-detail-value.is-muted {
  color: #7f8aa5;
}

#notification-report-page .nr-detail-value.is-uppercase {
  text-transform: uppercase;
}

#notification-report-page .nr-message-body {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #4b536a;
}

#notification-report-page .nr-checklist-list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #21514f;
  font-size: 13px;
}

#notification-report-page .nr-modal-actions {
  justify-content: flex-end;
}

@media only screen and (max-width: 900px) {
  #notification-report-page .nr-detail-grid.two-col,
  #notification-report-page .nr-detail-grid.three-col {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  #notification-report-page.notification-report-page {
    padding: 10px;
  }

  #notification-report-page .nr-empty-title {
    font-size: 24px;
  }

  #notification-report-page .nr-btn,
  #notification-report-page .nr-filter-actions .nr-btn {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  #notification-report-page .nr-btn,
  #notification-report-page .nr-input,
  #notification-report-page .nr-table tbody tr {
    transition: none;
  }
}
