/* Admin Dashboard Component Styles */
#chart-tooltip {
  position: absolute;
  display: none;
  background: rgba(17, 24, 39, 0.95);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  white-space: pre-line;
  line-height: 1.4;
  text-align: left;
  transform: translate(-50%, -100%);
  margin-top: -8px;
}

#chart-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: rgba(17, 24, 39, 0.95) transparent transparent transparent;
}

.admin-stats-grid .stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.admin-stats-grid .stat-card > div {
  width: 100%;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  height: 96px;
  gap: 2px;
  margin-top: 16px;
  background: #1f2937;
  border-radius: 12px;
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.bar-chart > div {
  cursor: pointer;
}
