.widget {
    width: 400px;
    background: linear-gradient(to bottom, #1e1e4b, #562f72);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.widget h2 {
    margin: 0;
    font-size: 18px;
}

.stadium {
    font-size: 14px;
    opacity: 0.8;
}

.match {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 15px 0;
}

.team {
    text-align: center;
}

.team img {
    width: 60px;
    height: 60px;
}

.vs {
    font-size: 22px;
    font-weight: bold;
}

.odds {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.odds span {
    background: white;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.countdown {
    display: flex;
    justify-content: center;
    background: #000;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-top: 15px;
}

.countdown div {
    margin: 0 10px;
    text-align: center;
}

.countdown span {
    display: block;
    font-size: 16px;
    font-weight: bold;
}
.rts-upcoming-match .swiper-pag {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    bottom: 0;
    text-align: center;
  }
  .table-container {
    width: 80%;
    margin: auto;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  th {
    background-color: #f4f4f4;
  }
  .match {
    display: flex;
    align-items: center;
  }
  .match img {
    width: 40px;
    height: 40px;
    margin-right: 1px;
  }
  .prediction {
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 5px;
  }

   /* Estilos base para los botones */
   .page-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f0f0f0;  /* Color de fondo inicial */
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.page-selector {
  text-align: center;
}

/* Estilos cuando el mouse pasa sobre los botones */
.page-button:hover {
    background-color: #ff1a2d; /* Color de fondo al pasar el mouse */
    color: white; /* Cambiar el color del texto al pasar el mouse */
}

/* Estilo opcional para el primer botón seleccionado */
.page-button:active {
    background-color: #ff1a2d; /* Color de fondo al hacer clic */
}