.cricket-cards-wrapper {
  position: relative;
  overflow-x: hidden;
  padding: 10px 0;
}
.cricket-cards-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}
.cricket-score-card {
  flex: 0 0 250px;
  background: #fff;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  font-family: sans-serif;
  font-size: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.series-header {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.live-flag {
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  animation: blink 1s linear infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.match-location {
  font-size: 12px;
  color: #666;
  margin: 5px 0;
}
.team-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-score {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 6px;
}
.team-logo {
  width: 32px;
  height: 20px;
  object-fit: contain;
}
.score-line {
  font-weight: 600;
}
.match-status {
  font-size: 12px;
  margin-top: 6px;
  color: #2025c7;
}
button.scroll-left,
button.scroll-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 6px 10px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
}
button.scroll-left { left: 0; }
button.scroll-right { right: 0; }