.matches-wrapper {
    width: 100%;
    max-width: 1300px;
    /* margin: 0 auto; */
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
    /* padding: 0px; */
    max-height: fit-content;
    align-self: center;
}

.match-card {
    align-self: center;
    width: 100%;
    /* background:rgb(255, 255, 255); */
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0.1, 0.1,0.1, 0.1);
    padding: 10px;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
    max-height: 150px;
    padding-top: 20px;
}


.match-time {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    /* margin-bottom: 5px;
    margin-top: 10px; */
}


.match-score {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.match-status {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 10px;
    display: inline-block;
    margin: 0 auto 10px auto;
    
}

.status-live {
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    animation: pulseGrow 1.5s ease-in-out infinite;
    display: inline-block;
}




.status-upcoming {
    background-color: #007dff;
    color: #ffffff;
}
.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}



.team {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    max-width: 200px;
    color: #444;
}

.middle {
  flex: 1;
  text-align: center;
}

.team img {
    width: 65px;
    height: 65px;
    /* border-radius: 50%; */
    object-fit: cover;
    margin-bottom: 8px;
    /* border: 2px solid #ddd; */
}

.team p {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}

.vs {
    flex: 0 0 60px;
    font-size: 20px;
    font-weight: bold;
    color: #444;
}

.competition {
    text-align: left;
    font-size: 14px;
    color: #7f8c8d;
    flex: 1; 
    /* margin-top: 5px; */
}

.no-matches {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}
/* .match-card:has(.status-live) .teams {
    justify-content: center;
    gap: 40px;
} */



.match-time-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #ff4d00;
    flex: 1; 
    /* margin-bottom: 5px;
    margin-top: 10px; */
}

.match-info-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
     width: 100%;
    text-align: center;
}

/* Responsive Styling */
@media (max-width: 600px) {
    .teams {
        flex-direction: column;
        gap: 10px;
    }

    .team, .vs {
        flex: unset;
    }

    .vs {
        font-size: 18px;
    }

    .team img {
        width: 60px;
        height: 60px;
    }

    .team p {
        font-size: 14px;
    }
}
@media (max-width: 1680px) {
  .matches-wrapper {

    padding-left: 0px;

}
}
/* *********************************************** */

.btn {
    text-transform: uppercase;
    text-decoration: none;
    /* padding: 15px 40px; */
    /* display: inline-block; */
    /* border-radius: 20%; */
    /* position: absolute; */
    transition: all 0.2s;
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    animation: btnFloat 2s ease-in-out infinite;
}



/* Pulsing ripple effect */
.btn-animate::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #f50000;
    animation: pulseRipple 1.5s ease-out infinite;
    transform: scale(1);
    opacity: 0.6;
}

/* Ripple animation */
@keyframes pulseRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/*  */

/* Optionally, add hover effects for better UX */
.match-card:hover {
    opacity: 0.8; /* Slightly reduce opacity when hovered */
    transition: opacity 0.3s ease;
    cursor: pointer;
    background-color: #f8f8f8;
}

.status-finished {
    background-color: #999;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
}

/* ///////////////////////////////// */

.match-date-buttons {
  display: flex;
  justify-content: center;
  /* gap: 40px; */
}

/* ******************************* */

.box-2 { 
    /* height: 33.33%; */
  width: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1a1a1a; 
}

.btn-two {
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 250px;
  cursor: pointer;
}

/* 
========================
      BUTTON TWO
========================
*/
.btn-two {
  color: #FFF;
  transition: all 0.5s;
  position: relative; 
}
.btn-two span {
  z-index: 2; 
  display: block;
  position: absolute;
  width: 100%;
  height: 100%; 
}
.btn-two::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.5s;
  border: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.1);
}
.btn-two::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s;
  border: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.1);
}
.btn-two:hover::before {
  transform: rotate(-20deg);
  background-color: rgba(255,255,255,0);
}
.btn-two:hover::after {
  transform: rotate(20deg);
  background-color: rgba(255,255,255,0);
}