

.heatmap-container {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.btn-lg {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 768px) {
  .heatmap-container {
    min-height: 250px;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
}

.team-a-score {
  border: 2px solid #0d6efd !important;
  border-radius: 8px;
  background-color: rgba(13, 110, 253, 0.05);
}

.team-a-score .form-label {
  color: #0d6efd;
  font-weight: 600;
}

.team-a-score .form-control {
  border-color: #0d6efd;
}

.team-a-score .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.team-b-score {
  border: 2px solid #dc3545 !important;
  border-radius: 8px;
  background-color: rgba(220, 53, 69, 0.05);
}

.team-b-score .form-label {
  color: #dc3545;
  font-weight: 600;
}

.team-b-score .form-control {
  border-color: #dc3545;
}

.team-b-score .form-control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
