/* 085 Ranking - Statistics Page Styles */

.stats-card {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #ffbb29;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  color: whitesmoke;
  transition: transform 0.2s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 187, 41, 0.3);
}

.stats-card h3 {
  color: #ffbb29;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffbb29;
  text-align: center;
}

.stat-label {
  text-align: center;
  color: whitesmoke;
  font-size: 1.1rem;
  margin-top: 10px;
}

.chart-container {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #ffbb29;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.page-title {
  color: #ffbb29;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 30px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.info-table {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #ffbb29;
  border-radius: 10px;
  padding: 15px;
  color: whitesmoke;
}

.info-table table {
  width: 100%;
  color: whitesmoke;
}

.info-table th {
  color: #ffbb29;
  font-weight: bold;
  padding: 10px;
  border-bottom: 1px solid #ffbb29;
}

.info-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 187, 41, 0.3);
}

.info-table tbody tr:hover {
  background-color: rgba(255, 187, 41, 0.1);
}
