.body-hone-partidos {
  .porFe {
    width: 98%;
    height: 70px;
    background-color: rgb(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;

    .logo {
      height: 100%;
      display: flex;
      align-items: center;
      gap: 10px;

      .logo-img {
        height: 60%;
        width: 45px;
        border-radius: 100%;

        img {
          width: 100%;
          height: 100%;
        }
      }
      .logo-text {
        display: flex;
        flex-direction: column;
        text-align-last: left;
        gap: 5px;

        h5 {
          color: white;
          font-family: fantasy;
        }
      }
    }

    .link {
      i {
        font-size: 1.2rem;
        color: white;
      }
    }
  }

  .body-calendario {
    width: 98%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(255, 255, 255, 0.1);
    border-radius: 20px;

    .body-calendario-header {
      width: 90%;
      height: 65px;
      display: flex;
      align-items: center;
      justify-content: end;
      gap: 25px;

      @media screen and (max-width: 480px) {
        justify-content: center;
      }

      .categoria {
        height: 98%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9em;
        cursor: pointer;
        transition: all 1s;

        &:hover {
          border: solid 1px red;
          border-top: none;
          border-left: none;
          border-right: none;
          color: red;
          transition: all 1s;
        }

        @media screen and (max-width: 480px) {
          font-size: 0.8em;
        }
      }
    }

    .body-calendario-footer {
      display: flex;
      width: 100%;
      height: 60px;
      align-items: center; /* This centers the items vertically */
      justify-content: space-around; /* This distributes space between the items */

      .toggle-switch {
        display: flex; /* Changed from inline-block to flex for better alignment */
        align-items: center;
        gap: 10px; /* Adds space between the text and the switch itself */
        width: 50%;
        height: auto;
        justify-content: center;

        span {
          small {
            color: white;
          }
        }
      }

      .toggle-input {
        display: none; /* Hides the actual checkbox */
      }

      .toggle-label {
        display: block;
        width: 50px;
        height: 25px; /* Changed height to be a bit taller */
        border-radius: 15px;
        position: relative;
        cursor: pointer;
        transition: background-color 0.3s ease;
        background-color: #ccc; /* Default color when unchecked */
      }

      .toggle-label::before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: white;
        top: 2.5px; /* Center the circle vertically */
        left: 3px; /* Initial position for the circle */
        transition: transform 0.3s ease;
      }

      .toggle-input:checked + .toggle-label {
        background-color: red;
      }

      .toggle-input:checked + .toggle-label::before {
        transform: translateX(25px); /* Moves the circle to the right */
      }

      @media screen and (max-width: 480px) {
        .toggle-switch {
          width: 80%;
          justify-content: space-between;
        }
      }
    }
  }
}




/* Noticias estilos */

.buscador {
  width: 98%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgb(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 0;

  .buscador-header {
    width: 90%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    .title-text {
      height: 98%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.9em;
      cursor: pointer;
      transition: all 1s;

      &:hover {
        border: solid 1px red;
        border-top: none;
        border-left: none;
        border-right: none;
        color: red;
        transition: all 1s;
      }
    }
  }

  .buscador-footer {
    width: 90%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;

    input {
      width: 70%;
      height: 60%;
      border-radius: 10px;
      border: none;
      padding: 0 10px;
      background-color: #27282e;
      color: #f9f9f9;
    }

    span {
      position: relative;
      left: -30px;
      color: #f9f9f9;
    }
  }

  @media screen and (max-width: 480px) {
    .buscador-header {
      .title-text {
        font-size: 0.8em;
      }
    }

    .buscador-footer {
      input {
        width: 80%;
      }
    }
  }
}

.buscador-calendario {
  height: 150px;
  justify-content: space-between;

  .buscador-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;

    .meses,
    .anos {
      display: flex;
      align-items: center;
      height: 48px;
      border-radius: 10px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      background-color: rgba(255, 255, 255, 0.05);
    }

    .meses {
      width: 100%;
      justify-content: space-between;
      padding: 0 15px;

      button {
        border: 1px solid #d1d1d1;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: #ffffff;
        background: transparent;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        transition:
          background 0.2s,
          color 0.2s,
          border-color 0.2s;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;

        &:hover {
          background: #e91e63;
          color: #fff;
          border-color: #e91e63;
        }

        &:active {
          transform: scale(0.95);
        }
      }

      span {
        font-size: 1.1rem;
        font-weight: 600;
        color: #f9f9f9;
        letter-spacing: 1px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        font-family: "Segoe UI", "Arial", sans-serif;
        text-align: center;
        flex-grow: 1;
      }
    }

    .anos {
      width: 100%;
      justify-content: center;
      padding: 0 10px;

      input[type="number"] {
        width: 100%;
        max-width: 120px;
        height: 36px;
        background: transparent;
        border: 1px solid transparent;
        border-radius: 6px;
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 500;
        text-align: center;
        transition:
          border-color 0.2s,
          background-color 0.2s;
        outline: none;
        -moz-appearance: textfield;

        &::-webkit-outer-spin-button,
        &::-webkit-inner-spin-button {
          -webkit-appearance: none;
          margin: 0;
        }

        &:focus {
          border-color: #e91e63;
          background-color: rgba(255, 255, 255, 0.05);
        }
      }
    }

    @media screen and (max-width: 340px) {
      padding: 10px;
      gap: 5px;

      .meses {
        padding: 0 8px;

        button {
          width: 32px;
          height: 32px;
          font-size: 1rem;
        }

        span {
          font-size: 0.95rem;
          letter-spacing: 0px;
        }
      }

      .anos {
        height: 42px;

        input[type="number"] {
          font-size: 1rem;
        }
      }
    }

    @media screen and (min-width: 480px) {
      flex-direction: row;
      gap: 15px;
      max-width: 100%;
      padding: 12px;

      .meses {
        width: 65px;
        flex-grow: 2;

        span {
          font-size: 1.2rem;
        }
      }

      .anos {
        width: auto;
        flex-grow: 1;
        min-width: 110px;
      }
    }

    @media screen and (min-width: 768px) {
      gap: 20px;
      padding: 15px;

      .meses {
        span {
          font-size: 1.3rem;
        }
      }

      .anos {
        min-width: 130px;

        input[type="number"] {
          font-size: 1.3rem;
        }
      }
    }
  }
}

@media screen and (max-width: 480px) {
  .buscador-calendario {
    height: 225px;

    .buscador-header {
      justify-content: center;
      height: 40%;
    }

    .buscador-footer {
      flex-direction: column;
      justify-content: center;
      height: 60%;
      gap: 20px;
    }
  }
}

.buscador.noticias-buscador {
  width: 98%;
  max-width: 850px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px 0;
  margin: 0 auto;
  box-sizing: border-box;

  .buscador-header {
    width: 90%;
    height: auto;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 5px;
    scrollbar-width: none;

    &::-webkit-scrollbar {
      display: none;
    }

    .title-text {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.9rem;
      cursor: pointer;
      padding: 6px 0;
      border-bottom: 2px solid transparent;
      transition:
        color 0.3s ease,
        border-color 0.3s ease;
      flex-shrink: 0;

      &:hover {
        border-bottom-color: red;
        color: red;
      }

      span {
        font-family: "Segoe UI", sans-serif;
        font-weight: 500;
      }
    }
  }

  .buscador-footer {
    width: 90%;
    height: auto;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;

    input {
      width: 100%;
      max-width: 500px;
      height: 45px;
      border-radius: 10px;
      border: none;
      padding: 0 45px 0 15px;
      background-color: #27282e;
      color: #f9f9f9;
      font-size: 1rem;
      box-sizing: border-box;
      outline: none;
      transition: background-color 0.3s;

      &:focus {
        background-color: #31333a;
      }
    }

    span {
      position: relative;
      margin-left: -20px;
      color: #a0a0a5;
      display: flex;
      align-items: center;
      pointer-events: none;

      i {
        font-size: 1rem;
      }
    }
  }

  @media screen and (min-width: 768px) {
    padding: 20px 0;

    .buscador-header {
      justify-content: center;
      overflow-x: visible;
      gap: 30px;
      width: 95%;

      .title-text {
        font-size: 0.95rem;
      }
    }

    .buscador-footer {
      width: 100%;
    }
  }
}



.news-container {
  width: 98%;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;

  .news-card {
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);

    .news-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 8px;

      .location {
        color: #e91e63;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0;
        font-family: "Segoe UI", sans-serif;
      }

      .time {
        color: #a0a0a5;
        font-size: 0.75rem;
        font-family: "Segoe UI", sans-serif;
      }
    }

    .news-title {
      color: #ffffff;
      font-size: 1.3rem;
      line-height: 1.4;
      font-weight: 600;
      margin: 0;
      font-family: "Segoe UI", sans-serif;

      strong {
        color: #e91e63;
        font-weight: 700;
      }
    }

    .news-body {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;

      .news-img-wrapper {
        width: 100%;
        height: 200px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.4s ease;
        }

        &:hover img {
          transform: scale(1.03);
        }
      }

      .news-content-text {
        display: flex;
        flex-direction: column;
        gap: 12px;
        color: #e0e0e6;
        font-family: "Segoe UI", sans-serif;

        .paragraph {
          font-size: 0.95rem;
          line-height: 1.6;
          margin: 0;
          text-align: justify;

          strong {
            color: #ffffff;
          }
        }

        .highlight {
          color: #e91e63;
          font-weight: 600;
          display: block;
          margin-top: 5px;
        }
      }
    }
  }

  @media screen and (min-width: 600px) {
    .news-card {
      padding: 24px;
      gap: 18px;

      .news-title {
        font-size: 1.6rem;
      }

      .news-body {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;

        .news-img-wrapper {
          width: 35%;
          height: 220px;
        }

        .news-content-text {
          width: 65%;
        }
      }
    }
  }

  @media screen and (min-width: 900px) {
    .news-card {
      .news-body {
        gap: 28px;

        .news-img-wrapper {
          width: 30%;
          height: 240px;
        }

        .news-content-text {
          width: 70%;

          .paragraph {
            font-size: 1rem;
          }
        }
      }
    }
  }
}

/* Equipos de FEB */



/* Jugadores de FEb */



/* CAlendario FEB */

.card-pub {
  display: flex;
  flex-direction: column;

  .news-body {
    gap: 20px;
  }
}
