.transparency-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.bot-stats {
  grid-template-columns: repeat(3, 1fr);
}

.stat-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-card.bot-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.stat-card.bot-highlight .stat-label {
  color: rgba(255,255,255,0.9);
}

.stat-value {
  font-size: 2.5em;
  font-weight: bold;
  color: #D52B1E;
}

.stat-card.bot-highlight .stat-value {
  color: white;
}

.stat-label {
  color: #666;
  margin-top: 5px;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .dashboard-row {
    grid-template-columns: 1fr;
  }
  .bot-stats {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bot-panel {
  grid-column: 1 / -1;
}

.panel h3 {
  margin-top: 0;
  color: #333;
  border-bottom: 2px solid #D52B1E;
  padding-bottom: 10px;
}

.country-row {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.country-flag {
  font-size: 1.5em;
  margin-right: 10px;
}

.country-name {
  flex: 1;
}

.country-pct {
  font-weight: bold;
  color: #666;
}

.tier-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.tier-name {
  width: 100px;
}

.tier-bar {
  flex: 1;
  height: 20px;
  background: #eee;
  border-radius: 10px;
  margin: 0 10px;
  overflow: hidden;
}

.tier-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s;
}

.tier-pct {
  width: 50px;
  text-align: right;
  font-weight: bold;
}

.bot-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.bot-row:last-child {
  border-bottom: none;
}

.bot-icon { font-weight: bold; background: #eee; border-radius: 4px; padding: 2px 6px;
  
  margin-right: 10px;
  width: 30px;
  text-align: center;
}

.bot-name {
  width: 120px;
  font-weight: 500;
}

.bot-bar {
  flex: 1;
  height: 16px;
  background: #eee;
  border-radius: 8px;
  margin: 0 15px;
  overflow: hidden;
}

.bot-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  transition: width 0.5s;
}

.bot-stats {
  width: 120px;
  text-align: right;
  font-size: 0.9em;
  color: #666;
}

.update-note {
  text-align: center;
  color: #999;
  font-size: 0.9em;
}
