.react-main {
  padding-top: 18px;
  padding-bottom: 30px;
}

.react-title {
  color: #4f2a17;
  font-size: clamp(1.35rem, 2vw, 2rem);
  margin-bottom: 20px;
}

.react-subtitle {
  color: #6a3a21;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  margin-bottom: 16px;
}

.dashboard-shell {
  padding-left: 2px;
  padding-right: 2px;
}

.dashboard-hero {
  margin-bottom: 16px;
  border-radius: 18px;
  padding: 18px 20px;
  color: #fff7ec;
  border: 1px solid #cc7a32;
  background:
    radial-gradient(380px 190px at 90% 0%, rgba(255, 186, 110, 0.24) 0%, rgba(255, 186, 110, 0) 70%),
    linear-gradient(145deg, #e07f24 0%, #cf6410 56%, #ba5408 100%);
  box-shadow: 0 12px 24px rgba(95, 42, 14, 0.2);
}

.dashboard-hero-title {
  margin: 0;
  color: #fff4e7;
  font-size: clamp(1.4rem, 2.55vw, 2.95rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.014em;
}

.dashboard-hero-subtitle {
  margin: 6px 0 0;
  color: #ffe8cf;
  font-size: clamp(0.96rem, 1.35vw, 1.8rem);
  line-height: 1.35;
}

.dashboard-hero-tag {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 236, 214, 0.54);
  background: rgba(92, 36, 8, 0.2);
  color: #fff2df;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.dashboard-section-title {
  color: #5e3219;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  margin-bottom: 12px;
}

.action-form {
  margin-bottom: 22px;
}

.card-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.card-action-button {
  min-height: 288px;
  border-radius: 14px;
  border-top: 5px solid #d17222;
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  background: #f7f7f7;
  color: #2d180f;
  text-align: center;
  padding: 18px 16px 16px;
  box-shadow: 0 8px 18px rgba(58, 31, 15, 0.16);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  white-space: normal;
}

.card-action-button:hover,
.card-action-button:focus {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(58, 31, 15, 0.22);
  color: #2d180f;
  border-top-color: #c25d13;
}

.card-action-button:disabled {
  background: #eceaea;
  color: #8b867f;
  border-top-color: #b7b2ad;
  box-shadow: 0 6px 12px rgba(58, 31, 15, 0.08);
  transform: none;
  cursor: not-allowed;
}

.card-action-icon-wrap {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 4px solid #c96f25;
  color: #c96f25;
  background: #fff8ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.05rem;
  margin-bottom: 14px;
}

.card-action-title {
  margin: 0;
  color: #2d180f;
  font-size: clamp(1.25rem, 1.55vw, 2rem);
  line-height: 1.16;
  font-weight: 700;
}

.card-action-text {
  margin: 12px 0 0;
  color: #4a443f;
  font-size: clamp(1rem, 1.05vw, 1.35rem);
  line-height: 1.35;
  min-height: 88px;
}

.card-action-cta {
  margin-top: auto;
  padding-top: 10px;
  color: #c26a21;
  font-size: clamp(1.1rem, 1.3vw, 1.7rem);
  font-weight: 800;
}

.card-action-cta i {
  margin-left: 4px;
}

.module-tabs-wrap {
  margin: 2px 0 16px;
}

.module-tabs {
  border-bottom: 0;
  gap: 8px;
}

.module-tabs .nav-link {
  border: 1px solid #e2c8a6;
  border-radius: 999px;
  background: #fff3df;
  color: #885134;
  font-weight: 600;
  padding: 7px 13px;
}

.module-tabs .nav-link.active {
  background: linear-gradient(180deg, #e08b34 0%, #cc6916 100%);
  border-color: #cc6916;
  color: #fff5e8;
  font-weight: 700;
}

.module-tabs .nav-link.disabled {
  opacity: 0.86;
}

.action-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.action-button {
  width: 400px;
  max-width: 100%;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: linear-gradient(180deg, #b4572d 0%, #963d1d 100%);
  padding: 10px 24px;
  text-align: center;
}

.action-button:hover,
.action-button:focus {
  color: #ffffff;
  background: linear-gradient(180deg, #96451f 0%, #7a2e16 100%);
}

.action-button:disabled {
  background: #777777;
  cursor: not-allowed;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1300;
}

.report-download-form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.duplicate-mode-switch {
  display: inline-flex;
  gap: 12px;
  padding: 8px;
  background: #f6e7d3;
  border-radius: 999px;
  margin: 6px 0 20px;
}

.duplicate-mode-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: transparent;
  color: #6c4525;
  font-weight: 700;
}

.duplicate-mode-btn.active {
  background: linear-gradient(180deg, #b4572d 0%, #963d1d 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(150, 61, 29, 0.24);
}

.duplicate-file-wrap {
  padding-right: 16px;
}

.duplicate-file-wrap input[type="file"] {
  width: 100%;
  border: 0;
  background: transparent;
  color: #50311e;
}

.duplicate-help-text {
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: #7a5b45;
}

.duplicate-results-shell {
  margin-top: 28px;
}

.duplicate-group-list {
  display: grid;
  gap: 20px;
}

.duplicate-group-card {
  border: 1px solid #e3c7a2;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffaf2 0%, #fff4e6 100%);
  padding: 22px;
  box-shadow: 0 18px 36px rgba(114, 73, 35, 0.08);
}

.duplicate-group-head,
.duplicate-match-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.duplicate-group-title,
.duplicate-match-title {
  margin: 0;
  color: #3b2414;
  font-size: 1.05rem;
  font-weight: 800;
}

.duplicate-group-subtitle,
.duplicate-match-subtitle {
  margin: 4px 0 0;
  color: #7a5b45;
  font-size: 0.9rem;
}

.duplicate-group-count {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f1dfc4;
  color: #8c451f;
  font-weight: 800;
}

.duplicate-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.duplicate-meta-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ead0ae;
  border-radius: 14px;
  padding: 12px 14px;
}

.duplicate-meta-label {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8b684c;
}

.duplicate-meta-value {
  margin: 6px 0 0;
  color: #3b2414;
  font-weight: 700;
  line-height: 1.35;
}

.duplicate-match-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.duplicate-match-card {
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #ead8bf;
}

.duplicate-match-comment {
  margin: 14px 0 0;
  color: #563621;
  line-height: 1.55;
}

.duplicate-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  color: #7a5b45;
  font-size: 0.86rem;
  font-weight: 700;
}

.score-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.score-badge-high {
  background: #dff5e8;
  color: #1f6b41;
}

.score-badge-likely {
  background: #fff2d8;
  color: #995d00;
}

.score-badge-review {
  background: #f9e2d9;
  color: #9a3f1d;
}

.data-sync-report-shell {
  display: grid;
  gap: 18px;
}

.data-sync-status-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-radius: 18px;
  padding: 22px;
}

.data-sync-success {
  background: linear-gradient(180deg, #eef8f1 0%, #def2e6 100%);
  border: 1px solid #b8dfc4;
}

.data-sync-error {
  background: linear-gradient(180deg, #fff0ea 0%, #fde2d7 100%);
  border: 1px solid #f0bfa8;
}

.data-sync-status-title {
  margin: 0;
  color: #3b2414;
  font-size: 1.15rem;
  font-weight: 800;
}

.data-sync-status-text {
  margin: 8px 0 0;
  color: #69482f;
  line-height: 1.6;
}

.data-sync-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.8);
  color: #7c3d1b;
  font-weight: 800;
}

.data-sync-error-panel {
  border-radius: 16px;
  border: 1px solid #e7b29a;
  background: #fff6f1;
  padding: 18px 20px;
}

.data-sync-error-panel h4 {
  margin: 0 0 8px;
  color: #8f3712;
  font-size: 1rem;
  font-weight: 800;
}

.data-sync-error-panel p {
  margin: 0;
  color: #6d3d23;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.batch-summary-form .table-responsive {
  border-radius: 14px;
  border: 1px solid #d9be98;
  background: #fffaf2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.batch-summary-form table {
  margin-bottom: 0;
}

.batch-summary-form thead th {
  background: #f1dfc4;
  color: #50311e;
  border-bottom-color: #d7bb96;
  font-size: 0.84rem;
  white-space: nowrap;
}

.batch-summary-form tbody td {
  vertical-align: middle;
  color: #3b2b21;
  font-size: 0.83rem;
}

.add-user-card {
  max-width: 980px;
  border: 1px solid #e0d1bf;
  background: #f7f7f7;
  box-shadow: 0 14px 30px rgba(62, 32, 14, 0.16);
}

.mrl-report-card {
  max-width: 1220px;
}

.add-user-card .app-card-header {
  position: relative;
  padding: 20px 24px 14px;
  border-bottom: 1px solid #eadfce;
}

.add-user-head-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  border-radius: 18px 0 0 0;
  background: linear-gradient(180deg, #de7a22 0%, #ce6715 100%);
}

.add-user-head {
  padding-left: 2px;
}

.add-user-head-title {
  margin: 0;
  color: #3a160b;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
}

.add-user-head-title i {
  color: #472114;
}

.add-user-head-subtitle {
  margin: 8px 0 0;
  color: #5f5449;
  font-size: clamp(1rem, 1.15vw, 1.6rem);
}

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

.one-col-grid {
  grid-template-columns: 1fr;
}

.add-user-field {
  min-width: 0;
}

.add-user-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: #3b2217;
  font-size: 1.05rem;
  font-weight: 700;
}

.add-user-field-label i {
  color: #8a8177;
}

.add-user-required-star {
  color: #d9422d;
  margin-left: 2px;
}

.add-user-flag {
  font-size: 0.84rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
}

.add-user-flag.required {
  color: #d44934;
  background: #ffe7e2;
}

.add-user-flag.optional {
  color: #7b756f;
  background: #ecebe9;
}

.add-user-input-wrap {
  position: relative;
}

.search-suggestions-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  border: 1px solid #d9bf9f;
  border-radius: 12px;
  background: #fffdf9;
  box-shadow: 0 10px 20px rgba(58, 31, 15, 0.12);
  max-height: 240px;
  overflow-y: auto;
  z-index: 30;
}

.search-suggestion-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #f0e2cf;
  background: transparent;
  color: #3c2619;
  text-align: left;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.search-suggestion-item:last-child {
  border-bottom: 0;
}

.search-suggestion-item:hover,
.search-suggestion-item:focus,
.search-suggestion-item.active {
  background: #fff1de;
  color: #8f4a1f;
  outline: none;
}

.search-suggestion-empty {
  padding: 10px 12px;
  color: #7a6f66;
  font-size: 0.92rem;
}

.add-user-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #80766d;
  font-size: 1.05rem;
  pointer-events: none;
}

.add-user-field input {
  width: 100%;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #c4a37a;
  background: #fcfcfb;
  color: #2e231c;
  padding: 0 40px 0 40px;
  font-size: 16px;
}

.add-user-field select,
.add-user-select {
  width: 100%;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #c4a37a;
  background: #fcfcfb;
  color: #2e231c;
  padding: 0 40px 0 40px;
  font-size: 16px;
  appearance: none;
}

.add-user-field input::placeholder {
  color: #a2988f;
}

.add-user-field input:focus {
  outline: none;
  border-color: #da7f2f;
  box-shadow: 0 0 0 3px rgba(218, 127, 47, 0.16);
}

.add-user-field select:focus,
.add-user-select:focus {
  outline: none;
  border-color: #da7f2f;
  box-shadow: 0 0 0 3px rgba(218, 127, 47, 0.16);
}

.add-user-help {
  margin-top: 7px;
  white-space: pre-line;
  line-height: 1.35;
  color: #73675e;
}

.password-input-wrap {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 11px;
  border: 0;
  background: #fff6eb;
  color: #a75d27;
  font-weight: 700;
  font-size: 0.84rem;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid #d9af84;
}

.password-match-msg {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.add-user-action-bar {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eadfce;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.mrl-action-bar {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eadfce;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.mrl-report-preview {
  margin-top: 18px;
  border-top: 1px solid #eadfce;
  padding-top: 14px;
}

.mrl-report-meta {
  margin: 0 0 10px;
  color: #4a3b30;
  font-weight: 600;
}

.mrl-table-wrap {
  border-radius: 14px;
}

.mrl-empty-state {
  margin: 18px 0 4px;
  color: #6a5f57;
}

.report-section-title {
  margin: 8px 0 10px;
  color: #5a2f18;
  font-size: clamp(1.12rem, 1.35vw, 1.4rem);
  font-weight: 800;
}

.book-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.book-detail-item {
  border: 1px solid #dfc5a7;
  border-radius: 12px;
  background: #fffaf2;
  padding: 10px 12px;
}

.book-detail-label {
  margin: 0;
  color: #6a4a35;
  font-size: 0.85rem;
  font-weight: 700;
}

.book-detail-value {
  margin: 4px 0 0;
  color: #2f231b;
  font-size: 0.95rem;
  line-height: 1.35;
}

.no-border-top {
  border-top: 0;
  padding-top: 4px;
}

.role-section-form {
  margin-top: 10px;
  border-top: 1px solid #eadfce;
  padding-top: 16px;
}

.role-section-title {
  margin: 0 0 12px;
  color: #3b2217;
  font-size: 1.05rem;
}

.role-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.role-checkbox-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid #dfc5a7;
  background: #fffaf2;
  padding: 10px 12px;
  color: #3d2b20;
  font-weight: 600;
}

.role-checkbox-item input {
  width: 16px;
  height: 16px;
  accent-color: #cd6613;
}

.add-user-action-btn {
  min-width: 198px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.add-user-action-btn-secondary {
  background: #fff4e3;
  color: #8f4a1f;
  border-color: #dbb187;
}

.add-user-action-btn-secondary:hover,
.add-user-action-btn-secondary:focus {
  color: #783917;
  background: #ffe8ca;
  text-decoration: none;
}

.add-user-action-btn-primary {
  background: linear-gradient(180deg, #df7a22 0%, #cd6613 100%);
  color: #fff8ef;
  border-color: #c45f12;
}

.add-user-action-btn-primary:hover,
.add-user-action-btn-primary:focus {
  color: #fff;
  background: linear-gradient(180deg, #cb6d1d 0%, #b9570d 100%);
}

.add-user-action-btn-primary:disabled {
  background: #dbd6d1;
  border-color: #ccc5be;
  color: #8b867f;
  cursor: not-allowed;
}

.reporting-dashboard-shell {
  padding-left: 2px;
  padding-right: 2px;
}

.reporting-dashboard-card {
  max-width: 1280px;
  overflow: hidden;
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(233, 176, 92, 0.2) 0%, rgba(233, 176, 92, 0) 72%),
    linear-gradient(180deg, #f9f4ed 0%, #f7f7f7 100%);
}

.report-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.report-stat-card {
  border-radius: 18px;
  border: 1px solid #e0c59f;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 239, 0.96) 100%);
  box-shadow: 0 12px 28px rgba(78, 41, 18, 0.08);
  padding: 18px 18px 16px;
}

.report-stat-label {
  margin: 0;
  color: #7b604f;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.report-stat-value {
  margin: 10px 0 6px;
  color: #35170d;
  font-size: clamp(1.8rem, 2.3vw, 3rem);
  line-height: 1;
  font-weight: 800;
}

.report-stat-hint {
  margin: 0;
  color: #6b625b;
  font-size: 0.9rem;
  line-height: 1.35;
}

.scope-chart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 14px;
}

.scope-chart-card {
  border-radius: 18px;
  border: 1px solid #e1d2c0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(59, 30, 13, 0.08);
  padding: 16px;
}

.scope-chart-head h3 {
  margin: 0 0 12px;
  color: #3d1d10;
  font-size: 1.05rem;
  font-weight: 800;
}

.scope-chart-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scope-bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scope-bar-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  color: #5e5045;
}

.scope-bar-meta strong {
  color: #2f1a10;
  font-weight: 800;
}

.scope-bar-track {
  height: 10px;
  border-radius: 999px;
  background: #efe5d8;
  overflow: hidden;
}

.scope-bar-fill {
  height: 100%;
  min-width: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d77a21 0%, #c85e14 100%);
}

.scope-bar-fill.bucket-lt {
  background: linear-gradient(90deg, #7f6d55 0%, #6a5842 100%);
}

.scope-bar-fill.bucket-rt {
  background: linear-gradient(90deg, #da8c2d 0%, #ca6a13 100%);
}

.scope-bar-fill.bucket-st {
  background: linear-gradient(90deg, #1f8b8c 0%, #0f7172 100%);
}

.scope-bar-fill.bucket-pp {
  background: linear-gradient(90deg, #c45d1e 0%, #a84710 100%);
}

.scope-bar-fill.bucket-none {
  background: linear-gradient(90deg, #9e8471 0%, #866a57 100%);
}

.scope-bar-fill.bucket-prod {
  background: linear-gradient(90deg, #2f9a57 0%, #237842 100%);
}

.scope-bar-fill.bucket-mt {
  background: linear-gradient(90deg, #8e5bb8 0%, #714398 100%);
}

.scope-bar-fill.metric-published {
  background: linear-gradient(90deg, #289b5a 0%, #1b7c45 100%);
}

.scope-bar-fill.metric-beta {
  background: linear-gradient(90deg, #d89a19 0%, #b87b0d 100%);
}

.scope-bar-fill.metric-partial {
  background: linear-gradient(90deg, #1b8db7 0%, #116d90 100%);
}

.scope-bar-fill.metric-full {
  background: linear-gradient(90deg, #5b7dd1 0%, #3d60b9 100%);
}

.scope-bar-fill.metric-duplicate {
  background: linear-gradient(90deg, #8c6d5b 0%, #725545 100%);
}

.scope-bar-fill.metric-scan {
  background: linear-gradient(90deg, #c96721 0%, #b1490e 100%);
}

.report-table-shell {
  border-radius: 16px;
  border: 1px solid #dbc2a2;
  background: #fffaf2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow-x: auto;
}

.report-table-shell table {
  margin-bottom: 0;
}

.report-table-shell thead th {
  background: #f1dfc4;
  color: #50311e;
  border-bottom-color: #d7bb96;
  font-size: 0.84rem;
  white-space: nowrap;
}

.report-table-shell tbody td {
  vertical-align: middle;
  color: #3b2b21;
  font-size: 0.83rem;
}

.report-methodology-list {
  display: grid;
  gap: 10px;
}

.report-methodology-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  border-radius: 14px;
  border: 1px solid #e6d5c0;
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 14px;
}

.report-methodology-index {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #df7e24 0%, #cc6714 100%);
  color: #fff8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.report-methodology-item p {
  margin: 1px 0 0;
  color: #58483d;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .react-main {
    padding-top: 12px;
    padding-bottom: 22px;
  }

  .dashboard-hero {
    padding: 16px 15px;
    margin-bottom: 14px;
  }

  .card-action-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 12px;
  }

  .card-action-button {
    min-height: 232px;
    padding: 14px 10px 12px;
  }

  .card-action-icon-wrap {
    width: 72px;
    height: 72px;
    font-size: 1.5rem;
    border-width: 3px;
    margin-bottom: 10px;
  }

  .card-action-text {
    min-height: 64px;
  }

  .card-action-cta {
    font-size: 1.45rem;
    line-height: 1;
  }

  .module-tabs-wrap {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .module-tabs {
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .add-user-card .app-card-header {
    padding: 18px 14px 12px;
  }

  .add-user-head-title {
    font-size: clamp(1.95rem, 7vw, 2.6rem);
  }

  .add-user-head-subtitle {
    font-size: 0.97rem;
  }

  .add-user-card .app-card-body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .add-user-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .role-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .book-details-grid {
    grid-template-columns: 1fr;
  }

  .add-user-action-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .mrl-action-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .report-stat-grid {
    grid-template-columns: 1fr;
  }

  .add-user-action-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .card-action-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 10px;
  }

  .card-action-button {
    min-height: 206px;
    padding: 12px 8px 10px;
  }
}
