* { box-sizing: border-box; }
body {
  margin: 0;
  background: #f6f7f9;
  color: #18212f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.topbar {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 10px 20px;
  background: #ffffff;
  border-bottom: 1px solid #d9dee7;
}
.brand { font-size: 18px; font-weight: 700; }
.subtle { color: #667085; font-size: 12px; }
.nav {
  display: flex;
  gap: 4px;
  flex: 1;
  align-items: center;
  flex-wrap: wrap;
}
.nav a, .userbox a, .links a {
  color: #1b5ea9;
  text-decoration: none;
}
.nav a,
.nav-menu summary {
  padding: 8px 10px;
  border-radius: 6px;
  color: #344054;
}
.nav a.active,
.nav-menu.active summary,
.nav-menu[open] summary {
  background: #e9f2ff;
  color: #174d88;
}
.nav-menu {
  position: relative;
}
.nav-menu summary {
  cursor: pointer;
  list-style: none;
  font-weight: 400;
}
.nav-menu summary::-webkit-details-marker {
  display: none;
}
.nav-menu summary::after {
  content: "\25BE";
  margin-left: 7px;
  color: #667085;
  font-size: 11px;
}
.nav-menu-body {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 6px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(24, 33, 47, 0.12);
}
.nav-menu-body a {
  display: block;
  white-space: nowrap;
}
.userbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px;
}
h1 { font-size: 24px; margin: 0 0 16px; }
h2 { font-size: 16px; margin: 22px 0 10px; }
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.metric {
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  padding: 14px;
}
.metric span, .metric small { display: block; color: #667085; }
.metric strong { display: block; font-size: 22px; margin: 5px 0; }
.metric-action { margin-top: 6px; }
.metric-action a {
  color: #1b5ea9;
  font-weight: 700;
  text-decoration: none;
}
.metric-gsc-ok { border-color: #b7d8c0; background: #f7fbf8; }
.metric-gsc-warning { border-color: #e0c36b; background: #fffaf0; }
.metric-gsc-missing { border-color: #e2b8b8; background: #fff8f8; }
.action-alert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid #e0c36b;
  border-radius: 8px;
  background: #fffaf0;
}
.action-alert span,
.action-alert small {
  display: block;
  color: #667085;
}
.action-alert strong {
  display: block;
  margin: 3px 0;
  font-size: 18px;
}
.action-alert p {
  margin: 0 0 4px;
  color: #5c4600;
}
.grid2 {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 18px;
}
.filters {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 0 0 16px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 8px;
}
.filters label {
  margin: 0;
  min-width: 180px;
}
.filters label:first-child {
  flex: 1;
}
.filters select {
  width: 100%;
  margin-top: 6px;
  padding: 9px 10px;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  background: #ffffff;
}
.filter-button {
  width: auto;
  min-width: 96px;
}
.clear-filter {
  padding: 10px 0;
  color: #1b5ea9;
  text-decoration: none;
  font-weight: 700;
}
.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 16px;
}
.quick-filters a {
  padding: 7px 10px;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  background: #ffffff;
  color: #1b5ea9;
  text-decoration: none;
  font-weight: 700;
}
.quick-filters a.active {
  background: #e9f2ff;
  border-color: #9cc7f2;
  color: #174d88;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #d9dee7;
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
}
.table-scroll:focus {
  outline: 2px solid #9cc7f2;
  outline-offset: 2px;
}
.table-scroll table {
  min-width: 860px;
  border: 0;
}
.table-scroll th:first-child,
.table-scroll td:first-child {
  border-left: 0;
}
.subject-cell {
  min-width: 280px;
}
th, td {
  padding: 8px 10px;
  border-bottom: 1px solid #e7ebf0;
  text-align: left;
  vertical-align: top;
}
th {
  background: #eef1f5;
  color: #344054;
  font-size: 12px;
  text-transform: uppercase;
}
.url {
  max-width: 280px;
  overflow-wrap: anywhere;
}
.links {
  min-width: 180px;
}
.links a {
  display: inline-block;
  margin: 0 8px 4px 0;
}
.page-intro {
  margin: -6px 0 16px;
}
.page-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.summary {
  margin-top: 6px;
  color: #475467;
}
.downloads {
  min-width: 220px;
}
.download-button {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 7px 9px;
  border: 1px solid #b8c7d8;
  border-radius: 6px;
  background: #ffffff;
  color: #174d88;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.download-button.primary {
  background: #1b5ea9;
  border-color: #1b5ea9;
  color: #ffffff;
}
.download-more {
  margin-top: 4px;
}
.download-more summary {
  cursor: pointer;
  color: #1b5ea9;
  font-weight: 700;
}
.download-group {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e7ebf0;
}
.download-group strong,
.download-group span {
  display: block;
}
.download-group span {
  color: #667085;
  font-size: 12px;
  margin: 2px 0 5px;
}
.actions {
  min-width: 150px;
}
.actions form {
  display: inline-block;
  margin: 0 5px 5px 0;
}
.status {
  display: inline-block;
  padding: 3px 7px;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  background: #f8fafc;
  white-space: nowrap;
}
.status-new { background: #eef6ff; border-color: #b8d8ff; color: #174d88; }
.status-accepted { background: #ecfdf3; border-color: #b7e4c7; color: #12623a; }
.status-in_progress { background: #fff7db; border-color: #e8ca72; color: #6b4c00; }
.status-implemented, .status-implemented_check { background: #edf7ed; border-color: #afd6af; color: #225c22; }
.status-rejected { background: #fff1f1; border-color: #e3a1a1; color: #8a1f1f; }
.badge,
.impact {
  display: inline-block;
  margin-left: 6px;
  padding: 3px 7px;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.impact {
  margin: 0 0 4px;
}
.impact-positive { background: #ecfdf3; border-color: #b7e4c7; color: #12623a; }
.impact-pending { background: #fff7db; border-color: #e8ca72; color: #6b4c00; }
.impact-neutral { background: #f8fafc; border-color: #c9d3df; color: #475467; }
.note-cell {
  min-width: 220px;
}
.note-cell form {
  margin: 0;
}
.task-list {
  display: grid;
  gap: 10px;
}
.task-list.compact {
  gap: 8px;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  margin: 0 0 18px;
}
.business-card {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
}
.business-card h3 {
  margin: 0;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.business-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}
.business-metrics span {
  padding: 6px 8px;
  border: 1px solid #e3e8ef;
  border-radius: 6px;
  background: #f8fafc;
  color: #475467;
  font-size: 12px;
  font-weight: 700;
}
.decision-list {
  display: grid;
  gap: 12px;
}
.decision-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #d9dee7;
  border-left: 4px solid #98a2b3;
  border-radius: 8px;
  background: #ffffff;
}
.decision-priority-high { border-left-color: #b42318; }
.decision-priority-medium { border-left-color: #b7791f; }
.decision-priority-low { border-left-color: #475467; }
.decision-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.decision-card h2 {
  margin: 6px 0 0;
  font-size: 18px;
}
.decision-score {
  min-width: 74px;
  padding: 8px;
  border: 1px solid #e3e8ef;
  border-radius: 6px;
  text-align: center;
  background: #f8fafc;
}
.decision-score span {
  display: block;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.decision-score strong {
  display: block;
  margin-top: 2px;
  font-size: 20px;
}
.decision-url {
  margin: 0;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.decision-components {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 6px;
}
.decision-components span {
  padding: 6px 8px;
  border: 1px solid #e3e8ef;
  border-radius: 6px;
  background: #f8fafc;
  color: #475467;
  font-size: 12px;
}
.decision-components strong {
  color: #101828;
}
.decision-related {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.decision-related strong {
  margin-right: 2px;
}
.decision-related span {
  padding: 5px 7px;
  border: 1px solid #d9dee7;
  border-radius: 6px;
  background: #fffdf7;
  color: #475467;
  font-size: 12px;
  font-weight: 700;
}
.decision-evidence ul {
  margin: 6px 0 0;
  padding-left: 18px;
}
.decision-action p {
  margin: 6px 0 0;
}
.health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.health-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
}
.health-card h2 {
  margin: 0;
}
.health-card p {
  margin: 0;
  color: #475467;
}
.health-ok { border-color: #b7d8c0; }
.health-warning { border-color: #e0c36b; background: #fffaf0; }
.health-missing { border-color: #e2b8b8; background: #fff8f8; }
.gsc-metrics {
  grid-template-columns: minmax(280px, 1.5fr) repeat(4, minmax(150px, 1fr));
}
.internal-link-metrics {
  grid-template-columns: minmax(190px, 1.1fr) repeat(4, minmax(150px, 1fr));
}
.technical-metrics {
  grid-template-columns: minmax(190px, 1.1fr) repeat(4, minmax(150px, 1fr));
}
.gsc-tabs,
.gsc-status-tabs {
  display: grid;
  gap: 8px;
}
.gsc-tabs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 6px 0 10px;
}
.gsc-status-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 18px;
}
.gsc-tabs a,
.gsc-status-tabs a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #c9d3df;
  border-radius: 8px;
  background: #ffffff;
  color: #344054;
  text-decoration: none;
  font-weight: 700;
}
.gsc-tabs a.active,
.gsc-status-tabs a.active {
  background: #e9f2ff;
  border-color: #9cc7f2;
  color: #174d88;
}
.gsc-tabs strong,
.gsc-status-tabs strong {
  min-width: 26px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #eef1f5;
  color: #344054;
  text-align: center;
}
.gsc-tabs a.active strong,
.gsc-status-tabs a.active strong {
  background: #174d88;
  color: #ffffff;
}
.gsc-workbench {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.gsc-workflow-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.gsc-workflow-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
  color: #344054;
  text-decoration: none;
}
.gsc-workflow-card.primary {
  border-color: #9cc7f2;
  background: #f3f8ff;
}
.gsc-workflow-card span {
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.gsc-workflow-card strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  min-width: 42px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef1f5;
  color: #18212f;
  font-size: 20px;
  text-align: center;
}
.gsc-workflow-card.primary strong {
  background: #174d88;
  color: #ffffff;
}
.gsc-workflow-card small {
  color: #475467;
}
.gsc-task-section {
  padding: 14px;
}
.gsc-indexation-panel {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 12px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
}
.indexation-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.indexation-stats div {
  display: grid;
  gap: 2px;
  padding: 9px;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  background: #f8fafc;
}
.indexation-stats span {
  color: #667085;
  font-size: 12px;
}
.indexation-stats strong {
  color: #18212f;
  font-size: 20px;
}
.indexation-list {
  display: grid;
  gap: 8px;
}
.indexation-guidance {
  margin: 0;
}
.indexation-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  gap: 12px;
  padding: 10px;
  border: 1px solid #e3e8ef;
  border-left-width: 4px;
  border-radius: 8px;
  background: #ffffff;
}
.indexation-item h3 {
  margin: 5px 0 4px;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.indexation-item p {
  margin: 0 0 5px;
  color: #475467;
}
.indexation-item strong {
  align-self: center;
  color: #18212f;
  font-size: 13px;
}
.indexation-problem {
  border-left-color: #d92d20;
}
.attention-urgent {
  background: #fff8f6;
}
.indexation-warning,
.indexation-unknown {
  border-left-color: #d6a900;
}
.attention-review {
  background: #fffdf5;
}
.indexation-ok {
  border-left-color: #2e7d32;
}
.gsc-brief {
  position: sticky;
  top: 14px;
  padding: 14px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
}
.gsc-brief h2 {
  margin-top: 0;
}
.gsc-brief p {
  margin: 0 0 10px;
  color: #475467;
}
.gsc-brief ul {
  margin: 0;
  padding-left: 18px;
  color: #667085;
}
.gsc-brief li {
  margin: 7px 0;
}
.gsc-bridge-note {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e7ebf0;
  color: #475467;
  font-size: 13px;
}
.gsc-bridge-note strong {
  color: #18212f;
}
.gsc-task-panel {
  min-width: 0;
}
.task-card {
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  padding: 12px;
}
.task-card h3 {
  margin: 7px 0 3px;
  font-size: 15px;
  overflow-wrap: anywhere;
}
.cms-proposal-card {
  max-width: 1040px;
}
.cms-proposal-card .task-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cms-proposal-card .internal-link-copy textarea {
  max-height: 320px;
}
.internal-link-card h3 {
  margin-bottom: 8px;
}
.internal-link-focus {
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid #d6e3f3;
  border-radius: 8px;
  background: #f6faff;
}
.internal-link-focus span,
.internal-link-decision span,
.internal-link-details summary,
.internal-link-copy > span {
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}
.internal-link-focus strong {
  color: #18212f;
  font-size: 18px;
  line-height: 1.25;
}
.internal-link-focus small {
  color: #475467;
}
.internal-link-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  margin: 8px 0 10px;
}
.internal-link-path div {
  padding: 9px;
  border: 1px solid #e7ebf0;
  border-radius: 6px;
  background: #ffffff;
}
.internal-link-path span,
.weak-page span {
  display: block;
  margin-bottom: 4px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}
.internal-link-path a,
.weak-page a {
  color: #1b5ea9;
  overflow-wrap: anywhere;
  text-decoration: none;
}
.internal-link-summary {
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 1fr);
}
.internal-link-overlap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.internal-link-overlap span {
  padding: 3px 7px;
  border: 1px solid #d9dee7;
  border-radius: 6px;
  background: #f8fafc;
  color: #475467;
  font-size: 12px;
  font-weight: 700;
}
.internal-link-sidebar {
  max-height: calc(100vh - 92px);
  overflow: auto;
}
.internal-link-guide {
  display: grid;
  gap: 4px;
}
.internal-link-guide strong {
  color: #18212f;
}
.internal-link-path small {
  display: block;
  margin-top: 4px;
  color: #667085;
  overflow-wrap: anywhere;
}
.internal-link-decision {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  padding: 9px;
  border: 1px solid #d9dee7;
  border-radius: 6px;
  background: #fffdf5;
}
.internal-link-decision strong {
  display: block;
  color: #18212f;
  font-weight: 600;
  line-height: 1.4;
}
.internal-link-decision small {
  color: #667085;
}
.internal-link-details {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #e7ebf0;
}
.internal-link-details summary {
  cursor: pointer;
  color: #1b5ea9;
}
.internal-link-steps {
  padding: 9px;
  border: 1px solid #d9dee7;
  border-radius: 6px;
  background: #fffdf5;
}
.internal-link-steps > span {
  display: block;
  margin-bottom: 4px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}
.internal-link-steps {
  margin-top: 10px;
}
.internal-link-steps ol {
  margin: 6px 0 0;
  padding-left: 20px;
  color: #344054;
}
.internal-link-steps li {
  margin: 5px 0;
}
.internal-link-copy {
  margin-top: 10px;
}
.internal-link-copy textarea {
  margin-top: 8px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
}
.internal-link-rules {
  margin: 8px 0 16px;
  padding-left: 18px;
  color: #475467;
}
.internal-link-rules li {
  margin: 6px 0;
}
.weak-page-list {
  display: grid;
  gap: 8px;
}
.weak-page {
  display: grid;
  gap: 3px;
  padding: 9px 0;
  border-top: 1px solid #e7ebf0;
}
.weak-page:first-child {
  border-top: 0;
}
.weak-page strong {
  overflow-wrap: anywhere;
}
.technical-table td {
  min-width: 150px;
}
.technical-table .technical-action {
  min-width: 280px;
  color: #344054;
  line-height: 1.4;
}
.technical-status {
  display: block;
  margin-top: 5px;
  overflow-wrap: anywhere;
}
.technical-sidebar {
  max-height: calc(100vh - 92px);
  overflow: auto;
}
.technical-counts {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.technical-counts div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid #e7ebf0;
}
.technical-counts div:first-child {
  border-top: 0;
}
.technical-counts span {
  color: #475467;
}
.technical-counts strong {
  min-width: 30px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #eef1f5;
  text-align: center;
}
.task-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.priority {
  display: inline-block;
  padding: 3px 7px;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.priority-high { background: #fff1f1; border-color: #e3a1a1; color: #8a1f1f; }
.priority-medium { background: #fff7db; border-color: #e8ca72; color: #6b4c00; }
.priority-low { background: #f8fafc; border-color: #c9d3df; color: #475467; }
.task-url {
  color: #667085;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.task-problem {
  margin: 8px 0;
  color: #344054;
}
.task-summary-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(260px, 1.4fr) minmax(180px, 0.9fr);
  gap: 8px;
  margin-top: 10px;
}
.task-summary-grid div {
  padding: 9px;
  border: 1px solid #e7ebf0;
  border-radius: 6px;
  background: #f8fafc;
}
.task-summary-grid span {
  display: block;
  margin-bottom: 4px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}
.task-summary-grid strong {
  display: block;
  color: #18212f;
  font-weight: 500;
  line-height: 1.4;
}
.task-facts {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 6px 10px;
  margin: 10px 0 0;
}
.task-facts dt {
  color: #667085;
  font-weight: 700;
}
.task-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.task-queries {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e7ebf0;
  color: #475467;
  font-size: 12px;
}
.task-queries summary {
  cursor: pointer;
  color: #1b5ea9;
  font-weight: 700;
}
.task-queries span {
  display: block;
  margin-top: 5px;
}
.gsc-verification {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 9px;
  border: 1px solid #d9dee7;
  border-radius: 6px;
  background: #f8fafc;
  color: #344054;
  font-size: 12px;
}
.gsc-verification strong {
  color: #18212f;
}
.verification-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.verification-heading small,
.verification-range {
  color: #667085;
}
.gsc-verification-positive {
  border-color: #a8d8ba;
  background: #edf8f1;
}
.gsc-verification-watch,
.gsc-verification-pending {
  border-color: #e3c66d;
  background: #fff9e8;
}
.gsc-verification-negative {
  border-color: #e3b5b5;
  background: #fff1f1;
}
.verification-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 6px;
  margin-top: 5px;
}
.verification-metric {
  padding: 7px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
}
.verification-metric span,
.verification-metric small {
  display: block;
}
.verification-metric span {
  color: #667085;
  font-weight: 700;
}
.verification-metric strong {
  display: block;
  margin: 2px 0;
  color: #18212f;
  font-size: 13px;
}
.verification-range {
  margin-top: 2px;
}
.delta-positive { color: #12623a !important; }
.delta-negative { color: #8a1f1f !important; }
.delta-neutral { color: #667085 !important; }
.verification-metrics {
  color: #475467;
}
.task-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.workflow-status {
  display: inline-block;
  padding: 3px 7px;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.workflow-status-todo {
  background: #f6f8fb;
  color: #475467;
}
.workflow-status-planned {
  background: #fff8e6;
  border-color: #e3c66d;
  color: #775300;
}
.workflow-status-implemented {
  background: #eaf7ef;
  border-color: #a8d8ba;
  color: #12623a;
}
.workflow-status-skipped {
  background: #f8eeee;
  border-color: #e3b5b5;
  color: #8a1f1f;
}
.gsc-status-form {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}
.status-button {
  padding: 6px 8px;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  background: #ffffff;
  color: #344054;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
}
.status-button:hover {
  background: #f6f8fb;
}
.status-button-planned {
  border-color: #e3c66d;
  color: #775300;
}
.status-button-implemented {
  border-color: #a8d8ba;
  color: #12623a;
}
.status-button-skipped {
  border-color: #e3b5b5;
  color: #8a1f1f;
}
textarea {
  width: 100%;
  margin: 0 0 6px;
  padding: 8px 10px;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  font: inherit;
  resize: vertical;
}
.warning {
  color: #8a4b00;
  font-weight: 700;
}
.pipeline-warning {
  display: grid;
  gap: 5px;
}
.pipeline-notice {
  display: grid;
  gap: 5px;
  padding: 8px 10px;
  border: 1px solid #d9dee7;
  border-radius: 6px;
  background: #f7fafc;
}
.pipeline-warning strong,
.pipeline-warning span,
.pipeline-warning small,
.pipeline-notice strong,
.pipeline-notice span,
.pipeline-notice small {
  display: block;
}
.pipeline-warning span,
.pipeline-warning small {
  color: #5c4600;
  font-weight: 500;
}
.pipeline-notice span,
.pipeline-notice small {
  color: #475467;
  font-weight: 500;
}
.pipeline-warning form {
  margin-top: 4px;
}
.empty { color: #667085; text-align: center; padding: 18px; }
.notice, .error {
  max-width: 1440px;
  margin: 12px auto 0;
  padding: 10px 14px;
  border: 1px solid #d6b656;
  background: #fff7db;
  color: #5c4600;
}
.notice.compact { margin: 10px 0; }
.error {
  border-color: #e29a9a;
  background: #fff1f1;
  color: #8a1f1f;
}
.oauth-panel {
  max-width: 860px;
}
.oauth-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 16px;
}
.oauth-steps div,
.oauth-code-card {
  padding: 12px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
}
.oauth-steps span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: #e9f2ff;
  color: #174d88;
  font-weight: 700;
}
.oauth-steps strong,
.oauth-steps small,
.oauth-code-card span,
.oauth-code-card small {
  display: block;
}
.oauth-steps small,
.oauth-code-card small,
.oauth-note {
  color: #667085;
}
.oauth-code-card strong {
  display: block;
  margin: 8px 0;
  font-size: 22px;
  letter-spacing: 0;
}
.oauth-secondary-form {
  margin-top: 10px;
}
.hints {
  margin: 0;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 8px;
}
.hints li { margin: 6px 0; }
.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.login-panel {
  width: min(420px, calc(100vw - 32px));
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  padding: 24px;
}
.login-panel h1 { margin-bottom: 4px; }
label {
  display: block;
  margin: 14px 0;
  color: #344054;
  font-weight: 600;
}
input,
select {
  width: 100%;
  margin-top: 6px;
  padding: 9px 10px;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  background: #ffffff;
}
.checkline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}
.checkline input { width: auto; margin: 0; }
button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: #1b5ea9;
  color: #ffffff;
  font-weight: 700;
}
.action-button {
  width: auto;
  padding: 7px 9px;
  border: 1px solid #b8c7d8;
  background: #ffffff;
  color: #174d88;
}
.report-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.back-link {
  display: inline-block;
  margin-bottom: 8px;
  color: #1b5ea9;
  font-weight: 700;
  text-decoration: none;
}
.eyebrow {
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.report-title {
  max-width: 980px;
  margin: 4px 0 0;
  overflow-wrap: anywhere;
}
.button-row {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}
.button-row .download-button {
  margin: 0;
}
.compact-metrics {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.detail-block {
  margin: 16px 0;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 8px;
}
.detail-block dl {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 8px 14px;
  margin: 0;
}
.detail-block dt {
  color: #667085;
  font-weight: 700;
}
.detail-block dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.detail-actions {
  margin-bottom: 12px;
}
.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.section-heading h2 {
  margin: 0;
}
.report-preview {
  padding: 12px;
}
.report-gold-brief .section-heading {
  align-items: flex-start;
}
.report-topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 12px;
}
.report-topic-card {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
}
.topic-card-header {
  display: grid;
  gap: 4px;
}
.topic-card-header h3 {
  margin: 0;
  font-size: 17px;
  overflow-wrap: anywhere;
}
.topic-card-header small {
  color: #667085;
}
.report-topic-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.report-topic-stats div {
  padding: 8px;
  border: 1px solid #e3e8ef;
  border-radius: 6px;
  background: #f8fafc;
}
.report-topic-stats span {
  display: block;
  margin-bottom: 3px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}
.report-topic-stats strong {
  color: #18212f;
  font-size: 14px;
}
.report-topic-notes {
  padding: 10px;
  border: 1px solid #e3e8ef;
  border-radius: 6px;
  background: #fffdf5;
}
.report-topic-notes ul {
  margin: 6px 0 0;
  padding-left: 18px;
  color: #344054;
}
.report-topic-serp summary {
  cursor: pointer;
  color: #1b5ea9;
  font-weight: 700;
}
.report-topic-serp ol {
  margin: 8px 0 0;
  padding-left: 22px;
}
.report-topic-serp li {
  margin: 6px 0;
  overflow-wrap: anywhere;
}
.report-topic-serp span {
  display: block;
  color: #667085;
}
.metadata-block {
  max-width: 980px;
}
.report-frame {
  width: 100%;
  min-height: 900px;
  border: 1px solid #d9dee7;
  border-radius: 6px;
  background: #ffffff;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
}
.pagination a,
.pagination span {
  padding: 7px 10px;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  background: #ffffff;
}
.pagination a {
  color: #1b5ea9;
  text-decoration: none;
  font-weight: 700;
}
.pagination a.disabled {
  color: #98a2b3;
  pointer-events: none;
}
@media (max-width: 860px) {
  .topbar, .nav, .userbox { align-items: flex-start; }
  .topbar { flex-direction: column; gap: 10px; }
  .nav { flex-wrap: wrap; }
  .nav-menu-body { position: static; margin-top: 6px; box-shadow: none; }
  .page-heading { flex-direction: column; }
  .action-alert { align-items: stretch; flex-direction: column; }
  .page-heading, .gsc-workbench { grid-template-columns: 1fr; }
  .gsc-tabs, .gsc-status-tabs, .gsc-metrics, .gsc-workflow-summary, .indexation-stats, .indexation-item, .business-grid, .business-metrics, .decision-components, .internal-link-metrics, .technical-metrics, .internal-link-path, .task-summary-grid, .verification-metrics, .report-topic-stats, .oauth-steps { grid-template-columns: 1fr; }
  .gsc-brief { position: static; }
  .grid2 { grid-template-columns: 1fr; }
  .report-header, .section-heading { flex-direction: column; }
  .button-row { justify-content: flex-start; }
  .filters, .pagination { align-items: stretch; flex-direction: column; }
  .detail-block dl, .task-facts { grid-template-columns: 1fr; }
  .page { padding: 14px; }
}
