body {
  font-family: 'Inter', sans-serif;
  background-color: #1a1a1a;
  color: #e0e0e0;
}

.container {
  max-width: 1200px;
  padding: 20px;
}

.team-logo {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.team-logo:hover {
  transform: scale(1.1);
}

.team-name {
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
}

.score {
  font-weight: 600;
  font-size: 1.2em;
  color: #fff;
}

.date-header {
  background: linear-gradient(90deg, #343a40 0%, #1a1a1a 100%);
  color: white;
  padding: 15px 20px;
  margin: 25px 0 15px 0;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filters-container {
  background: rgba(52, 58, 64, 0.8);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.match-card {
  border: none;
  border-radius: 12px;
  background: #2d2d2d;
  margin-bottom: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.match-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.status-live {
  background: #dc3545;
  animation: pulse 2s infinite;
}

.status-upcoming {
  background: #17a2b8;
}

.status-completed {
  background: #6c757d;
}

.league-name {
  color: #007bff;
  font-weight: 600;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table {
  background: #2d2d2d;
  border-radius: 12px;
  overflow: hidden;
}

.table thead th {
  border-top: none;
  background: #343a40;
  color: #fff;
  font-weight: 600;
}

.table tbody tr {
  transition: background-color 0.2s ease;
}

.table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.today-match {
  background: rgba(0, 123, 255, 0.1);
  border-left: 4px solid #007bff;
}

.today-match:hover {
  background: rgba(0, 123, 255, 0.15) !important;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

@media (max-width: 768px) {
  .table td, .table th {
    padding: .75rem;
    font-size: 0.9rem;
  }
  
  .team-logo {
    width: 35px;
    height: 35px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .match-card .card-body {
    padding: 1rem;
  }

  .match-card .score {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .filters-container {
    padding: 15px;
  }

  .form-group {
    margin-bottom: 10px;
  }
}

.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading .loading-spinner {
  display: block;
} 