/* Transparency Dashboard */

.transparency-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.transparency-header {
  margin-bottom: 2rem;
}

.transparency-header h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.transparency-subtitle {
  color: var(--text-secondary, #B3B3B3);
}

.stats-overview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.stat-tile {
  background: var(--surface, #1E1E1E);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary, #B3B3B3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.transparency-section {
  margin-bottom: 3rem;
}

.transparency-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.stats-table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.stats-table th,
.stats-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  white-space: nowrap;
}

.stats-table th {
  background: var(--surface, #1E1E1E);
  color: var(--text-secondary, #B3B3B3);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats-table td {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-variant-numeric: tabular-nums;
}

.stats-table tr:hover td {
  background: rgba(255,255,255,0.03);
}

.costs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.cost-item {
  background: var(--surface, #1E1E1E);
  border-radius: 12px;
  padding: 1.25rem;
}

.cost-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cost-amount {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary, #6C63FF);
  margin-bottom: 0.25rem;
}

.cost-desc {
  font-size: 0.8rem;
  color: var(--text-secondary, #B3B3B3);
}
