
.reports-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 12px;
  color: rgba(190, 224, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 800;
}

.reports-breadcrumbs a {
  color: #54c4ff;
  text-decoration: none;
}

.reports-breadcrumbs span:last-child {
  color: #ffffff;
}

.reports-workspace-shell {
  border: 1px solid rgba(91, 169, 230, 0.26);
  border-radius: 14px;
  background: rgba(6, 28, 50, 0.68);
  overflow: hidden;
}

.reports-workspace-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 18px 10px;
}

.reports-workspace-header h1 {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
}

.reports-workspace-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.reports-intel-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 18px 12px;
  padding: 10px 12px;
  border: 1px solid rgba(91, 169, 230, 0.20);
  border-radius: 10px;
  color: rgba(190, 224, 255, 0.82);
  font-size: 0.82rem;
}

.reports-intel-line strong {
  color: #ffffff;
  white-space: nowrap;
}

.reports-section-tabs {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  width: auto !important;
  padding: 8px !important;
  margin: 0 18px 14px !important;
  border: 1px solid rgba(69, 171, 255, 0.22);
  border-radius: 14px;
  background: rgba(5, 28, 49, 0.46);
}

.reports-section-tabs button {
  display: inline-flex !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 7px 15px !important;
  border: 1px solid rgba(69, 171, 255, 0.28);
  border-radius: 10px !important;
  color: rgba(220, 239, 255, 0.92);
  background: rgba(10, 43, 74, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-align: center !important;
  white-space: nowrap !important;
  cursor: pointer;
}

.reports-section-tabs button.is-active {
  color: #ffffff;
  border-color: rgba(69, 171, 255, 0.86);
  background: linear-gradient(180deg, rgba(35, 151, 232, 0.92), rgba(13, 87, 148, 0.86));
}

.reports-panels {
  padding: 0 18px 18px;
}

.reports-panel[hidden],
[data-reports-header-action][hidden] {
  display: none !important;
}

.reports-panel {
  display: grid;
  gap: 14px;
}

.reports-panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.reports-panel-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
}

.reports-panel-heading p {
  color: rgba(190, 224, 255, 0.78);
  margin: 6px 0 0;
}

.reports-metric-row {
  display: grid;
  border: 1px solid rgba(91, 169, 230, 0.20);
  border-radius: 10px;
  overflow: hidden;
}

.reports-metric-row.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reports-metric-row div {
  padding: 13px 16px;
  border-left: 1px solid rgba(91, 169, 230, 0.16);
}

.reports-metric-row div:first-child {
  border-left: 0;
}

.reports-metric-row span,
.reports-metric-row small {
  display: block;
  color: rgba(190, 224, 255, 0.76);
}

.reports-metric-row strong {
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
  margin: 8px 0;
}

.reports-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reports-feature-grid article,
.reports-card {
  border: 1px solid rgba(91, 169, 230, 0.20);
  border-radius: 10px;
  background: rgba(7, 30, 52, 0.48);
}

.reports-feature-grid article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title action"
    "copy action";
  gap: 4px 12px;
  align-items: center;
  padding: 14px 16px;
}

.reports-feature-grid strong {
  grid-area: title;
  color: #ffffff;
}

.reports-feature-grid p {
  grid-area: copy;
  color: rgba(190, 224, 255, 0.76);
  margin: 0;
}

.reports-feature-grid button {
  grid-area: action;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: #54c4ff;
  font-weight: 800;
  cursor: pointer;
}

.reports-card {
  padding: 14px 16px;
}

.reports-filters {
  display: grid;
  grid-template-columns: minmax(240px, 2fr) minmax(150px, 1fr) minmax(150px, 1fr) minmax(150px, 1fr);
  gap: 10px;
}

.reports-filters input,
.reports-filters select {
  min-height: 42px;
  border: 1px solid rgba(91, 169, 230, 0.30);
  border-radius: 10px;
  padding: 9px 12px;
  color: #d8ecff;
  background: rgba(7, 30, 52, 0.78);
}

.reports-table-shell {
  border: 1px solid rgba(91, 169, 230, 0.20);
  border-radius: 10px;
  overflow: hidden;
}

.reports-table-shell table {
  width: 100%;
  border-collapse: collapse;
}

.reports-table-shell th {
  text-align: left;
  color: rgba(190, 224, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(91, 169, 230, 0.16);
}

.reports-empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 48px 18px;
  text-align: center;
  color: rgba(190, 224, 255, 0.78);
}

.reports-empty strong {
  color: #ffffff;
  font-size: 1.12rem;
}

.reports-empty p {
  max-width: 760px;
  margin: 0;
}

@media (max-width: 1100px) {
  .reports-workspace-header,
  .reports-intel-line {
    flex-direction: column;
    align-items: stretch;
  }

  .reports-workspace-actions {
    justify-content: flex-start;
  }

  .reports-metric-row.four,
  .reports-feature-grid,
  .reports-filters {
    grid-template-columns: 1fr;
  }

  .reports-metric-row div {
    border-left: 0;
    border-top: 1px solid rgba(91, 169, 230, 0.16);
  }

  .reports-metric-row div:first-child {
    border-top: 0;
  }
}

@media (max-width: 900px) {
  .reports-section-tabs {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
  }
}
