.fls-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  font-family: Arial;
}

.fls-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fls-header h2 {
  font-size: 28px;
}

#fls-refresh {
  background: #111;
  color: #fff;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.fls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.fls-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.fls-card:hover {
  transform: translateY(-5px);
}

.fls-league {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.fls-teams {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 10px;
}

.fls-score {
  font-size: 26px;
  text-align: center;
  margin: 10px 0;
  color: #1e90ff;
}

.fls-status {
  text-align: center;
  font-size: 13px;
  color: #444;
}
