.module {
  cursor: pointer;
  transition:
    0.18s transform,
    0.18s box-shadow;
}
.module:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px #1233;
}
.link {
  border: 0;
  cursor: pointer;
}
.explorer-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 20px;
}
.explorer-head h1 {
  margin: 14px 0 4px;
}
.explorer-head p {
  margin: 0;
  color: #7285a5;
}
.back {
  background: transparent;
  color: #216cf3;
  padding: 0;
}
.actions {
  display: flex;
  gap: 10px;
}
.filters {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr 1.7fr 1fr 1.2fr auto;
  gap: 12px;
  align-items: end;
}
.filters label {
  font-size: 12px;
  font-weight: 700;
  color: #667b9d;
}
.filters input,
.filters select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px;
  border: 1px solid #ccd8ea;
  border-radius: 8px;
  background: #fff;
  color: #0b2447;
}
.quick-periods {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 2px;
}
.quick-periods span {
  color: #667b9d;
  font-size: 13px;
  font-weight: 700;
  margin-right: 4px;
}
.quick-periods button {
  padding: 8px 12px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 18px 0;
}
.detail-grid h2 {
  margin-top: 0;
}
.metric {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #e1e8f3;
}
.metric span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.metric b {
  white-space: nowrap;
}
.detail-table {
  margin-top: 16px;
}
.table-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
.table-title span {
  color: #7285a5;
}
.empty {
  text-align: center;
  color: #8293af;
  padding: 25px !important;
}
.detail-table td {
  font-size: 13px;
  max-width: 360px;
}
.detail-table tbody tr:hover {
  background: #f6f9ff;
}
.pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 18px 8px 8px;
}
.pager label {
  color: #667b9d;
  font-size: 13px;
  margin-right: auto;
}
.pager select {
  margin-left: 6px;
  padding: 7px;
  border: 1px solid #ccd8ea;
  border-radius: 7px;
  background: #fff;
}
.pager button {
  padding: 8px 11px;
}
.pager button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
@media (max-width: 1050px) {
  .filters {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
}
@media print {
  header,
  nav,
  .filters,
  .quick-periods,
  .actions,
  .back,
  .pager {
    display: none !important;
  }
  body {
    background: #fff;
  }
  main {
    max-width: none;
    padding: 0;
  }
  .card {
    box-shadow: none;
  }
  .detail-table tbody tr {
    break-inside: avoid;
  }
}
