/* OUTER WRAPPER FIX */
.cricketSlider {
  width: 100%;
  display: block;
}

/* SWIPER CONTAINER */
.cricketSlider .cricket-swiper {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

/* SLIDES */
.cricketSlider .swiper-slide {
  width: 330px !important;
  max-width: 330px !important;
  height: auto;
  background: #fff;
  border-radius: 10px;
  margin: 10px 0;
  box-shadow: 0 0 1px 1px #0a2a3e5e;
}

/* CARD CONTENT (YOUR ORIGINAL STYLE) */
.cricketSlider .cotainer-card {
  background: #fff;
  border-radius: 10px;
  padding-bottom: 10px;
  color: #00395f;
}

.cricketSlider .team-details {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 5px;
}

.cricketSlider .team-name img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.cricketSlider .team-name {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  max-width: 60px;
}

.cricketSlider .inner-card3 {
  padding: 10px 15px;
  font-weight: 600;
  text-align: center;
}

/* HEADER DETAILS */
.cricketSlider .header-wrapper {
  padding: 0 20px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cricketSlider .format-series {
  text-align: center;
  font-size: 15px;
}

.cricketSlider .stadium-matchDate {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cricketSlider .stadium-matchDate img {
  width: 20px;
}

.cricketSlider .stadium-matchDate div {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* LIVE ANIMATION */
.cricketSlider .blink-button {
  background: #0a2a3e;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  animation: blink 1.4s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}

/* NAV BUTTONS */
.cricketSlider .cricket-prev,
.cricketSlider .cricket-next {
      width: 40px;
    height: 40px;
    background: #0a2a3e;
    color: white !important;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
}

.cricketSlider .cricket-prev { left: 5px; font-size: 12px;
    font-weight: 900;
 }
.cricketSlider .cricket-next { right: 5px; }
.navigation-btn::after {
    font-size: 20px;
}
/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
  .cricketSlider .cricket-swiper { padding: 0 20px; }
  .cricketSlider .swiper-slide { width: 100% !important; max-width: 100% !important; }
}
