.admin-module-heading {
  margin-bottom: 34px;
}

.admin-module-heading h1 {
  margin: 8px 0 12px;
  font-size: clamp(38px, 5vw, 62px);
}

.admin-module-heading > span {
  color: #9d91ad;
  font-size: 14px;
}

.admin-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.admin-module-grid .configuration-module,
.reports-module {
  width: 100%;
  height: 150px;
  margin: 0;
}

.reports-module {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(87, 232, 189, .24);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(25, 117, 99, .27), rgba(17, 13, 32, .87) 52%, rgba(79, 38, 128, .31));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 22px 55px rgba(0, 0, 0, .36), 0 0 48px rgba(44, 210, 164, .06);
  color: #fff;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), border-color .3s, box-shadow .3s;
}

.reports-module::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  top: -180px;
  right: -45px;
  border-radius: 50%;
  background: rgba(72, 240, 190, .2);
  filter: blur(26px);
}

.reports-module::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 20%, rgba(255, 255, 255, .08) 45%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .65s ease;
}

.reports-module:hover {
  transform: translateY(-5px);
  border-color: rgba(92, 245, 199, .55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 28px 65px rgba(0, 0, 0, .44), 0 0 42px rgba(53, 217, 171, .12);
}

.reports-module:hover::after {
  transform: translateX(100%);
}

.reports-module-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 24px 30px;
}

.reports-module-copy span {
  color: #79e9c8;
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 1.7px;
}

.reports-module-copy strong {
  margin: 7px 0;
  font: 700 clamp(27px, 3.5vw, 40px)/1 "Space Grotesk", sans-serif;
  letter-spacing: -1.8px;
}

.reports-module-copy small {
  color: #9eb7b1;
}

.reports-module-chart {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
  width: 120px;
  height: 104px;
  margin: auto 22px auto 0;
  padding: 24px 19px;
  border: 1px solid rgba(114, 241, 204, .28);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(69, 191, 156, .18), rgba(17, 33, 38, .75));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 14px 32px rgba(0, 0, 0, .3);
}

.reports-module-chart i {
  width: 9px;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(#81f5d3, #3ba989);
  box-shadow: 0 0 12px rgba(89, 242, 198, .25);
  transition: height .4s cubic-bezier(.16, 1, .3, 1);
}

.reports-module-chart i:nth-child(1) { height: 20px; }
.reports-module-chart i:nth-child(2) { height: 36px; }
.reports-module-chart i:nth-child(3) { height: 27px; }
.reports-module-chart i:nth-child(4) { height: 48px; }
.reports-module:hover .reports-module-chart i:nth-child(1) { height: 30px; }
.reports-module:hover .reports-module-chart i:nth-child(2) { height: 45px; }
.reports-module:hover .reports-module-chart i:nth-child(3) { height: 38px; }
.reports-module:hover .reports-module-chart i:nth-child(4) { height: 57px; }

.reports-module-chart b {
  position: absolute;
  top: 14px;
  right: 15px;
  color: #b6ffea;
  font-size: 18px;
}

.reports-shell {
  width: min(100%, 1480px);
  max-width: 1480px;
  padding-top: 30px;
}

.reports-shell .breadcrumbs {
  margin-bottom: 38px;
}

.reports-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  height: auto;
  padding: 0 0 34px;
  border: 0;
  background: transparent;
}

.reports-hero h1 {
  margin: 7px 0 12px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: .95;
}

.reports-hero > div > p:last-child {
  max-width: 650px;
  margin: 0;
  color: #a89db7;
  font-size: 14px;
  line-height: 1.6;
}

.reports-live-status {
  display: grid;
  justify-items: end;
  gap: 7px;
  flex: 0 0 auto;
}

.reports-live-status > span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(99, 244, 184, .24);
  border-radius: 999px;
  background: rgba(40, 153, 115, .1);
  color: #84f6c2;
  font: 600 9px "DM Mono", monospace;
  letter-spacing: 1.2px;
}

.reports-live-status > span i,
.report-lot-summary em i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #73ffb5;
  box-shadow: 0 0 12px #64fca8;
  animation: report-pulse 1.4s ease infinite;
}

.reports-live-status.offline > span {
  border-color: rgba(255, 187, 100, .3);
  background: rgba(190, 107, 40, .1);
  color: #ffc17b;
}

.reports-live-status.offline > span i {
  background: #ffb567;
  box-shadow: 0 0 12px #ff9f43;
}

.reports-live-status small {
  color: #7e728c;
  font-size: 9px;
}

.reports-live-status time {
  color: #b8abc8;
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(216, 191, 255, .12);
  border-radius: 15px;
  background: rgba(220, 196, 255, .12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.report-metrics article {
  position: relative;
  min-width: 0;
  padding: 20px 18px;
  background: linear-gradient(145deg, rgba(29, 18, 46, .97), rgba(17, 11, 29, .98));
}

.report-metrics article::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 25px;
  height: 2px;
  background: #8e55e9;
  box-shadow: 0 0 10px rgba(160, 97, 255, .45);
}

.report-metrics .metric-value::after {
  background: #57dcae;
  box-shadow: 0 0 10px rgba(76, 229, 178, .4);
}

.report-metrics span,
.report-metrics small {
  display: block;
  overflow: hidden;
  color: #8d819d;
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 1px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-metrics strong {
  display: block;
  overflow: hidden;
  margin: 10px 0 7px;
  color: #f8f4ff;
  font: 650 clamp(24px, 2.4vw, 34px)/1 "Space Grotesk", sans-serif;
  letter-spacing: -1.1px;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .25s;
}

.report-metrics .metric-value strong {
  color: #9af4d4;
  font-size: clamp(20px, 2vw, 29px);
}

.reports-primary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, .8fr);
  gap: 18px;
}

.reports-charts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .75fr);
  gap: 18px;
  margin-bottom: 18px;
}

.report-line-chart svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
  overflow: visible;
}

.report-line-chart svg line {
  stroke: rgba(255, 255, 255, .065);
  stroke-width: 1;
}

.report-chart-bar {
  fill: rgba(151, 91, 239, .2);
  stroke: rgba(192, 143, 255, .28);
  stroke-width: 1;
  transition: opacity .2s;
}

.report-chart-bar:hover {
  fill: rgba(169, 105, 255, .38);
}

.report-line-chart polyline {
  fill: none;
  stroke: #ad72ff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(169, 100, 255, .6));
}

.report-chart-value,
.report-chart-label {
  font-family: "DM Mono", monospace;
  text-anchor: middle;
}

.report-chart-value {
  fill: #d8c5f1;
  font-size: 8px;
}

.report-chart-label {
  fill: #746a80;
  font-size: 7px;
}

.report-chart-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 3px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.report-chart-caption span {
  color: #71667d;
  font: 500 7px "DM Mono", monospace;
  letter-spacing: .8px;
}

.report-chart-caption strong {
  color: #ba91ed;
  font-size: 10px;
}

.report-donut-layout {
  display: grid;
  grid-template-columns: minmax(130px, .8fr) minmax(150px, 1.2fr);
  align-items: center;
  gap: 18px;
  min-height: 238px;
}

.report-donut {
  position: relative;
  width: min(100%, 180px);
  margin: auto;
}

.report-donut svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.report-donut circle {
  fill: none;
  stroke-width: 12;
}

.report-donut-track {
  stroke: rgba(255, 255, 255, .06);
}

.report-donut-segment {
  stroke-linecap: round;
  transition: opacity .2s;
}

.report-donut-segment:hover {
  opacity: .72;
}

.report-donut .segment-1,
.report-donut-legend .segment-1 i { stroke: #9c62ef; background: #9c62ef; }
.report-donut .segment-2,
.report-donut-legend .segment-2 i { stroke: #54dbb1; background: #54dbb1; }
.report-donut .segment-3,
.report-donut-legend .segment-3 i { stroke: #e56fc4; background: #e56fc4; }
.report-donut .segment-4,
.report-donut-legend .segment-4 i { stroke: #5ca9ec; background: #5ca9ec; }
.report-donut .segment-5,
.report-donut-legend .segment-5 i { stroke: #ebb45d; background: #ebb45d; }
.report-donut .segment-6,
.report-donut-legend .segment-6 i { stroke: #8e879c; background: #8e879c; }

.report-donut > div {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  pointer-events: none;
}

.report-donut > div strong,
.report-donut > div span {
  display: block;
}

.report-donut > div strong {
  font: 650 29px/1 "Space Grotesk", sans-serif;
  letter-spacing: -1.2px;
}

.report-donut > div span {
  margin-top: 5px;
  color: #786d84;
  font: 500 7px "DM Mono", monospace;
  letter-spacing: 1px;
}

.report-donut-legend {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-donut-legend li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.report-donut-legend li > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  box-shadow: 0 0 9px currentColor;
}

.report-donut-legend strong,
.report-donut-legend small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-donut-legend strong {
  font-size: 9px;
}

.report-donut-legend small {
  margin-top: 2px;
  color: #716678;
  font-size: 7px;
}

.report-donut-legend b {
  color: #aa95c1;
  font: 500 9px "DM Mono", monospace;
}

.report-card-bidders-panel {
  margin-top: 18px;
}

.report-settled-panel {
  margin-top: 18px;
}

.report-settled-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.report-settled-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(94, 235, 183, .13);
  border-radius: 10px;
  background: linear-gradient(105deg, rgba(25, 86, 70, .15), rgba(15, 9, 25, .74));
}

.report-settled-item.unsold {
  border-color: rgba(255, 255, 255, .07);
  background: rgba(15, 10, 23, .66);
  opacity: .68;
}

.report-settled-item > img {
  width: 54px;
  height: 75px;
  border-radius: 5px;
  object-fit: cover;
}

.report-settled-item > div {
  min-width: 0;
}

.report-settled-item > div:nth-child(2) span,
.report-settled-item > div:nth-child(2) strong,
.report-settled-item > div:nth-child(2) small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-settled-item > div:nth-child(2) span {
  color: #6fc9aa;
  font: 500 7px "DM Mono", monospace;
}

.report-settled-item > div:nth-child(2) strong {
  margin: 5px 0;
  font-size: 11px;
}

.report-settled-item > div:nth-child(2) small {
  color: #887a94;
  font-size: 8px;
}

.report-settled-item > div:last-child {
  text-align: right;
}

.report-settled-item > div:last-child b,
.report-settled-item > div:last-child span,
.report-settled-item > div:last-child time {
  display: block;
  white-space: nowrap;
}

.report-settled-item > div:last-child b {
  color: #98e9cb;
  font: 600 12px "DM Mono", monospace;
}

.report-settled-item > div:last-child span {
  margin: 5px 0;
  color: #7e9e93;
  font-size: 7px;
}

.report-settled-item > div:last-child time {
  color: #655d6d;
  font: 7px "DM Mono", monospace;
}

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

.report-card-bidders {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(196, 151, 255, .11);
  border-radius: 12px;
  background: rgba(14, 8, 24, .64);
}

.report-card-bidders > header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  height: auto;
  padding: 11px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(100deg, rgba(113, 59, 176, .16), transparent);
}

.report-card-bidders > header img {
  width: 42px;
  height: 58px;
  border-radius: 4px;
  object-fit: cover;
}

.report-card-bidders > header div {
  min-width: 0;
}

.report-card-bidders > header span,
.report-card-bidders > header strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-card-bidders > header span {
  color: #8d6cb9;
  font: 500 7px "DM Mono", monospace;
}

.report-card-bidders > header strong {
  margin-top: 5px;
  font-size: 11px;
}

.report-card-bidders > header > b {
  color: #c3a2ed;
  font: 500 8px "DM Mono", monospace;
  white-space: nowrap;
}

.report-card-bidder-users {
  display: grid;
  padding: 4px 11px 7px;
}

.report-card-bidder-users > div {
  display: grid;
  grid-template-columns: 19px 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.report-card-bidder-users > div:last-child {
  border-bottom: 0;
}

.report-card-user-position {
  color: #6f5a88;
  font: 500 7px "DM Mono", monospace;
}

.report-card-bidder-users .report-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 7px;
}

.report-card-bidder-users > div > span:nth-child(3) {
  min-width: 0;
}

.report-card-bidder-users > div > span:nth-child(3) strong,
.report-card-bidder-users > div > span:nth-child(3) small,
.report-card-bidder-users > div > span:last-child small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-card-bidder-users > div > span:nth-child(3) strong {
  font-size: 9px;
}

.report-card-bidder-users > div > span:nth-child(3) small {
  margin-top: 3px;
  color: #776a83;
  font-size: 7px;
}

.report-card-bidder-users > div > span:last-child {
  color: #82758f;
  font-size: 7px;
  text-align: right;
}

.report-card-bidder-users > div > span:last-child b {
  color: #d6c4e9;
  font-size: 11px;
}

.report-card-bidder-users > div > span:last-child small {
  margin-top: 3px;
  color: #8c76a5;
  font-size: 6px;
}

.reports-secondary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .85fr) minmax(280px, .75fr);
  gap: 18px;
  margin-top: 18px;
}

.report-panel {
  min-width: 0;
  padding: 23px;
  border: 1px solid rgba(214, 186, 255, .13);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(25, 15, 41, .91), rgba(12, 8, 22, .94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 18px 48px rgba(0, 0, 0, .2);
}

.report-panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  height: auto;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  background: transparent;
}

.report-panel-heading .eyebrow {
  margin: 0 0 5px;
  font-size: 8px;
}

.report-panel-heading h2 {
  margin: 0;
  font: 600 21px "Space Grotesk", sans-serif;
  letter-spacing: -.7px;
}

.report-panel-heading > span {
  color: #70657e;
  font: 500 8px "DM Mono", monospace;
  letter-spacing: .8px;
}

.report-live-list {
  display: grid;
  gap: 14px;
}

.report-live-lot {
  overflow: hidden;
  border: 1px solid rgba(194, 151, 255, .13);
  border-radius: 13px;
  background: rgba(13, 8, 24, .66);
}

.report-live-lot > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: auto;
  padding: 15px 17px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(90deg, rgba(104, 50, 164, .18), transparent);
}

.report-live-lot h3 {
  margin: 4px 0 0;
  font: 600 17px "Space Grotesk", sans-serif;
}

.report-lot-number {
  color: #ac7cf1;
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 1px;
}

.report-lot-summary {
  display: flex;
  align-items: center;
  gap: 15px;
}

.report-lot-summary > span {
  color: #8d819c;
  font-size: 10px;
}

.report-lot-summary > span b {
  color: #eee4fb;
}

.report-lot-summary em {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #73efb4;
  font: 600 8px "DM Mono", monospace;
  font-style: normal;
  letter-spacing: .8px;
}

.report-live-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.report-live-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 13px;
  min-width: 0;
  padding: 13px;
  background: #100a1c;
}

.report-live-card.ended {
  opacity: .55;
}

.report-card-image {
  position: relative;
  align-self: start;
}

.report-card-image img {
  display: block;
  width: 74px;
  aspect-ratio: 63 / 88;
  border-radius: 7px;
  object-fit: cover;
  background: #25183a;
}

.report-card-image span {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  padding: 4px 2px;
  border: 1px solid rgba(103, 255, 191, .3);
  border-radius: 4px;
  background: rgba(6, 20, 16, .9);
  color: #8dffca;
  font: 600 6px "DM Mono", monospace;
  letter-spacing: .5px;
  text-align: center;
}

.ended .report-card-image span {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(18, 15, 22, .9);
  color: #b8adbf;
}

.report-card-copy {
  min-width: 0;
}

.report-card-copy h4 {
  overflow: hidden;
  margin: 2px 0 4px;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-card-copy > p {
  overflow: hidden;
  margin: 0 0 11px;
  color: #786e84;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-card-numbers {
  display: grid;
  grid-template-columns: 1.15fr .7fr 1fr;
  gap: 6px;
}

.report-card-numbers span {
  min-width: 0;
  color: #70657d;
  font-size: 7px;
}

.report-card-numbers b,
.report-card-numbers time {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #dcd1e9;
  font: 600 9px "DM Mono", monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-card-numbers time {
  color: #d1a6ff;
}

.report-last-user {
  margin-top: 11px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.report-last-user small {
  display: block;
  color: #70647d;
  font-size: 6px;
}

.report-last-user strong {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #c9bdd6;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-last-user strong small {
  display: inline;
  color: #8e80a0;
}

.report-hot-list,
.report-activity-list,
.report-bidder-list,
.report-scheduled-list {
  display: grid;
  gap: 7px;
}

.report-hot-card {
  display: grid;
  grid-template-columns: 23px 43px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 9px;
  background: rgba(18, 11, 30, .72);
}

.report-hot-card.ended {
  opacity: .56;
}

.report-hot-rank {
  color: #8257b9;
  font: 500 9px "DM Mono", monospace;
}

.report-hot-card > img {
  width: 43px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
  background: #25173a;
}

.report-hot-card > div {
  min-width: 0;
}

.report-hot-card > div strong,
.report-hot-card > div small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-hot-card > div strong {
  font-size: 11px;
}

.report-hot-card > div small {
  margin: 4px 0 8px;
  color: #786d84;
  font-size: 7px;
}

.report-hot-card progress {
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: #241532;
  accent-color: #9f67ec;
}

.report-hot-card progress::-webkit-progress-bar { background: #241532; }
.report-hot-card progress::-webkit-progress-value { background: linear-gradient(90deg, #7140bc, #b77dff); }
.report-hot-card progress::-moz-progress-bar { background: linear-gradient(90deg, #7140bc, #b77dff); }

.report-hot-value {
  color: #8e819b;
  font-size: 7px;
  text-align: right;
}

.report-hot-value b,
.report-hot-value small {
  display: block;
}

.report-hot-value b {
  color: #e8dcf5;
  font: 600 15px "Space Grotesk", sans-serif;
}

.report-hot-value small {
  margin-top: 5px;
  color: #a48dbd;
  font-size: 7px;
}

.report-activity-list {
  max-height: 390px;
  overflow: auto;
  padding-right: 3px;
}

.report-activity-item {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.report-activity-item > img {
  width: 35px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
}

.report-activity-item > div {
  min-width: 0;
}

.report-activity-item strong,
.report-activity-item span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-activity-item strong {
  font-size: 10px;
}

.report-activity-item strong small {
  color: #8c7c9d;
  font-size: 7px;
}

.report-activity-item span {
  margin-top: 4px;
  color: #786d85;
  font-size: 8px;
}

.report-activity-item > div:last-child {
  text-align: right;
}

.report-activity-item > div:last-child b,
.report-activity-item > div:last-child time {
  display: block;
  white-space: nowrap;
}

.report-activity-item > div:last-child b {
  color: #c9a5fa;
  font-size: 10px;
}

.report-activity-item > div:last-child time {
  margin-top: 4px;
  color: #675c72;
  font: 7px "DM Mono", monospace;
}

.report-bidder {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.report-user-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(188, 141, 255, .28);
  border-radius: 10px;
  background: linear-gradient(145deg, #7744bc, #29163f);
  color: #fff;
  font: 600 9px "DM Mono", monospace;
}

.report-bidder > div strong,
.report-bidder > div small,
.report-bidder > span:last-child small {
  display: block;
}

.report-bidder > div strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-bidder > div small {
  margin-top: 3px;
  color: #776b83;
  font-size: 7px;
}

.report-bidder > span:last-child {
  color: #81748d;
  font-size: 7px;
  text-align: right;
}

.report-bidder > span:last-child b {
  color: #d8c8e9;
  font: 600 14px "Space Grotesk", sans-serif;
}

.report-bidder > span:last-child small {
  margin-top: 3px;
  color: #8e77a7;
  font-size: 7px;
}

.report-scheduled {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(178, 130, 244, .1);
  border-radius: 9px;
  background: rgba(20, 12, 33, .7);
}

.report-scheduled > div {
  min-width: 0;
}

.report-scheduled span,
.report-scheduled strong,
.report-scheduled small {
  display: block;
}

.report-scheduled span {
  color: #9872cc;
  font: 500 7px "DM Mono", monospace;
}

.report-scheduled strong {
  overflow: hidden;
  margin: 4px 0;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-scheduled small {
  color: #716678;
  font-size: 7px;
}

.report-scheduled time {
  flex: 0 0 auto;
  color: #cfadff;
  font: 600 11px "DM Mono", monospace;
}

.report-empty {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 26px;
  color: #9a8aa9;
  text-align: center;
}

.report-empty span {
  color: #9261d4;
  font-size: 27px;
}

.report-empty strong {
  margin-top: 8px;
  color: #d8cbe5;
  font-size: 12px;
}

.report-empty p {
  max-width: 300px;
  margin: 6px 0 0;
  color: #716579;
  font-size: 9px;
  line-height: 1.5;
}

.report-empty.compact {
  min-height: 145px;
}

@keyframes report-pulse {
  0%, 100% { opacity: .55; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 1180px) {
  .report-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reports-primary-grid { grid-template-columns: 1fr; }
  .reports-secondary-grid { grid-template-columns: 1fr 1fr; }
  .reports-secondary-grid > .report-panel:first-child { grid-column: 1 / -1; }
  .report-live-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .report-card-bidders-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-settled-list { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .admin-module-grid { grid-template-columns: 1fr; }
  .reports-hero { align-items: start; flex-direction: column; }
  .reports-live-status { justify-items: start; }
  .report-live-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reports-charts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .admin-module-heading h1 { font-size: 39px; letter-spacing: -2.2px; }
  .admin-module-heading > span { font-size: 12px; line-height: 1.5; }
  .admin-module-grid .configuration-module,
  .reports-module { height: 120px; }
  .reports-module-copy { padding: 20px; }
  .reports-module-copy strong { font-size: 27px; }
  .reports-module-copy small { font-size: 8px; }
  .reports-module-chart { width: 78px; height: 82px; margin-right: 14px; padding: 20px 13px; border-radius: 19px; }
  .reports-module-chart i { width: 6px; }
  .reports-shell { padding-right: 14px; padding-left: 14px; }
  .reports-shell .breadcrumbs { margin-bottom: 30px; }
  .reports-hero { padding-bottom: 25px; }
  .reports-hero h1 { font-size: 48px; letter-spacing: -3px; }
  .reports-hero > div > p:last-child { font-size: 12px; }
  .report-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-metrics article { padding: 17px 13px; }
  .report-metrics strong { font-size: 27px; }
  .report-metrics .metric-value strong { font-size: 20px; }
  .reports-secondary-grid { grid-template-columns: 1fr; }
  .reports-secondary-grid > .report-panel:first-child { grid-column: auto; }
  .report-panel { padding: 15px; border-radius: 13px; }
  .report-panel-heading { margin-bottom: 16px; }
  .report-panel-heading > span { display: none; }
  .report-live-lot > header { align-items: flex-start; flex-direction: column; gap: 10px; }
  .report-live-cards { grid-template-columns: 1fr; }
  .report-live-card { grid-template-columns: 68px minmax(0, 1fr); }
  .report-card-image img { width: 68px; }
  .report-hot-card { grid-template-columns: 20px 39px minmax(0, 1fr) auto; gap: 7px; padding: 7px; }
  .report-hot-card > img { width: 39px; height: 54px; }
  .report-line-chart svg { min-height: 175px; }
  .report-donut-layout { grid-template-columns: 120px minmax(0, 1fr); min-height: 190px; }
  .report-card-bidders-grid { grid-template-columns: 1fr; }
  .report-settled-item { grid-template-columns: 47px minmax(0, 1fr); }
  .report-settled-item > img { width: 47px; height: 65px; }
  .report-settled-item > div:last-child { grid-column: 2; text-align: left; }
}

@media (max-width: 390px) {
  .report-card-numbers { grid-template-columns: 1fr 1fr; }
  .report-card-numbers span:last-child { grid-column: 1 / -1; }
  .report-hot-value small { display: none; }
}
