

.points-wrapper {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 15px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.section-title {
  font-size: 28px;
  margin: 0 0 10px;
  font-weight: 600;
  color: #1f2d55;
}
.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}
.season-select label {
  margin-right: 6px;
  font-weight: 500;
}
.season-select select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.table-container {
  overflow-x: auto;
}
.points-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.points-table thead {
  background: #5f2fd3;
  color: white;
}
.points-table th,
.points-table td {
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
  white-space: nowrap;
}
.points-table th {
  font-weight: 600;
}
.team-cell {
  text-align: left;
}
.team-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.team-name {
  font-weight: 600;
}
.form-pill {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  margin-right: 4px;
  color: #fff;
}
.form-win { background: #28a745; }
.form-loss { background: #dc3545; }
.form-draw { background: #6c757d; }

.no-data {
  padding: 20px;
  background: #fff3f0;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  margin: 20px 0;
  color: #842029;
}
@media (max-width: 900px){
  .section-title { font-size: 24px; }
  .points-table th, .points-table td { padding: 10px 6px; font-size: 12px; }
}
