/*
Theme Name: Next1Hockey Child
Template: generatepress
*/


body {
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.6;
  background: #f8f9fa;
}

a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 🔧 Player Profile */
.player-profile {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.player-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.player-info {
  flex: 1 1 300px;
}

.player-info h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.team-logo-wrapper {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.team-logo {
  height: 80px;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.pie-chart {
  margin-top: 30px;
  text-align: center;
}

.player-class-stats {
  margin-top: 40px;
}

.class-block {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
}

.class-block h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.class-block p {
  margin: 6px 0;
  font-size: 15px;
}

.highlight-score {
  font-weight: bold;
  color: #0d6efd;
}

.delta.up {
  color: green;
}

.delta.down {
  color: red;
}

/* ✅ Claim Button */
.claim-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #0d6efd;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.claim-button:hover {
  background: #094ec4;
}

/* 📊 Stats Dashboard Styles */
.stats-dashboard ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.stats-dashboard li {
  margin: 5px 0;
}

.stats-dashboard a {
  text-decoration: none;
  color: #0056b3;
  font-weight: 500;
  white-space: nowrap;
}

.stats-dashboard a:hover {
  background-color: #e0ecff;
  text-decoration: none;
  border-radius: 3px;
  padding: 2px 4px;
}

.stats-column {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  background-color: #f0f6ff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 200px;
}

.stats-column h2 {
  margin-top: 0;
  font-size: 1.2rem;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.stats-dashboard > h1 {
  text-align: center;
  border-bottom: 5px solid #0056b3;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
  }
}
