.report-filter-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
  margin: 0 0 9px;
}

.report-filter-btn {
  position: relative;
  min-width: 0;
  height: 34px;
  padding: 0 3px;
  border: 1px solid rgba(111, 157, 126, 0.42);
  border-radius: 9px;
  background: rgba(11, 27, 20, 0.86);
  color: #aebeb2;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.report-filter-btn.on {
  border-color: rgba(226, 188, 69, 0.9);
  background: linear-gradient(180deg, rgba(91, 72, 20, 0.96), rgba(49, 39, 12, 0.96));
  color: #ffe789;
  box-shadow: inset 0 0 0 1px rgba(255, 222, 102, 0.12);
}

.report-filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15px;
  height: 15px;
  margin-left: 3px;
  padding: 0 4px;
  border-radius: 8px;
  background: #c93434;
  color: #fff;
  font-size: 9px;
  line-height: 1;
}

.report-filter-summary {
  margin: 0 0 8px;
  font-size: 11px;
}

.report-card.report-read {
  opacity: 0.62;
  filter: saturate(0.72);
}

.report-card.report-unread {
  opacity: 1;
  border-color: rgba(207, 177, 69, 0.68);
  background: linear-gradient(180deg, rgba(22, 43, 31, 0.98), rgba(10, 25, 18, 0.98));
}

.report-card .report-unread-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #ff4b45;
  box-shadow: 0 0 7px rgba(255, 57, 51, 0.8);
  vertical-align: 1px;
}

.report-filter-empty {
  padding: 18px 12px;
  text-align: center;
}

.report-filter-pager {
  margin-top: 10px;
}

@media (max-width: 380px) {
  .report-filter-tabs {
    gap: 3px;
  }

  .report-filter-btn {
    height: 32px;
    font-size: 11px;
  }

  .report-filter-badge {
    position: absolute;
    top: -5px;
    right: -3px;
    margin: 0;
  }
}
