body {
  background: #3c5564;
}

.sport-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sport-header {
  background: linear-gradient(45deg, #007bff, #6610f2);
  color: white;
  padding: 1rem 1.25rem;
  font-weight: bold;
  font-size: 1.2rem;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.sport-item {
  border-bottom: 1px solid #eee;
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}

.sport-item:last-child {
  border-bottom: none;
}

.sport-title {
  margin: 0;
  font-size: 1rem;
}

.sport-meta {
  font-size: 0.8rem;
  color: #666;
}

.badge-success {
  background-color: #28a745;
}

.badge-inactive {
  background-color: #6c757d;
}/*# sourceMappingURL=sport.css.map */