
  /* CSS for Kings League Split 3 */

  /* Etiquetas ESTRUCTURALES */
  
  html {
    background-color: #FFD700;
    scroll-behavior: smooth;
  }

  body {
    max-width: 100%;
    font-family: 'Agbalumo', Arial, sans-serif;
  }

  body, header, footer {
    margin: 0;
  }

  header, footer, nav {
    display: block;
  }

  header {
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 100;
    margin-top: -90px;
  }

  footer {
    width: 100%;
    height: auto;
    background-color: blue;
    margin-top: 0px;
  }

  footer nav {
    color: #ff9900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  h1 {
    font-size: 40px;
    text-align: center;
    margin-top: 90px;
  }

  h2 {
    font-size: 30px;
    text-align: left;
    margin-left: 10px;
    text-align: center;
    color: rgb(37, 37, 236);
  }

  h3 {
    font-size: 22px;
    text-align: left;
    margin-left: 10px;
    text-align: center;
  }

  h4 {
    font-size: 20px;
    text-align: center;
    color: rgb(37, 37, 236);
    margin-top: 2px;
    margin-bottom: 0px;
  }    

  h5 {
    font-size: 20px;
    margin-left: 10px;
    text-align: center;
  }

  h6 {
    font-size: 20px;
    color: rgb(250, 136, 30);
    text-align: center;
    margin: 20px;
  }

  a:visited {
    color: rgb(250, 136, 30);
    background-color: transparent;
  }

  /* SCROLL BAR */

  /* width */
  ::-webkit-scrollbar {
    width: 8px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: white; 
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: orange;
    border-radius: 4px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: blue; 
  }

  ::-webkit-scrollbar-corner {
    width: 10px;
  }

  /* ARROW BUTTON */

  #arrowBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0px;
    border-radius: 4px;
    background-color: transparent;
  }
  
  /* HEADER */

  .logo {
    width: 37px; /* Ajusta el tamaño del logo */
    height: auto;
  }
  
  .topnav {
    overflow: hidden;
    background-color: blue;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: orange;
    text-align: center;
    padding: 12px; 
    text-decoration: none;
    font-size: 25px;
  }

  .active {
    background-color: blue;
    color: blue;
  }

  .topnav .icon {
    display: none;
  }

  .dropdown {
    float: left;
    overflow: hidden;
  }

  .dropdown .dropbtn {
    font-size: 30px;
    border: none;
    outline: none;
    color: orange;
    padding: 21px;
    background-color: inherit;
    font-family: inherit;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: orange;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 50;
  }

  .dropdown-content a {
    float: none;
    color: blue;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .topnav a:hover, .dropdown:hover .dropbtn {
    background-color: white;
    color: #ff3333;
  }

  .dropdown-content a:hover {
    background-color: blue;
    color: orange;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* FOOTER */

  .contacto {
    color: #ff9900;
  }
  
  /* STAFF INFO */

  .staffinfo {
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
  }

  .staffname {
    position: relative;
    margin: 0 auto;
    text-align: center;
  }

  .staffname img {
    width: 50%;
    margin: 0px;
  }

  .staffname .infostaff {
    width: 50%;
    position: absolute;
    bottom: 0;
    background: rgb(255, 255, 255); /* Fallback color */
    background: rgba(255, 255, 255, 0.5); /* Black background with 0.5 opacity */
    color: #000000;
    padding: 0px;
    margin-left: 250px;
  }

  .infostaff ul li {
    text-align: left;
  }

  /* EQUIPMENT */
  
  * {box-sizing: border-box}
  
  .mySlides {display: none}
  img {vertical-align: middle;}
  
  /* Slideshow equipment */
  .slideshow-equipment {
    max-width: 500px;
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .slideshow-equipment img {
    width: 100%;
  }

  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    padding: 10px;
    color: rgb(13, 0, 255);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    z-index: 1;
  }

  /* Botón "prev" (izquierda) */
  .prev {
    left: 0px;
    border-radius: 3px 0 0 3px;
    z-index: 1;
  }

  /* Botón "next" (derecha) */
  .next {
    right: 0px;
    border-radius: 0 3px 3px 0;
    z-index: 1;
  }

  /* On hover, add a orange background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(255, 157, 0, 0.8);
    z-index: 1;
  }

  /* Number text (1/5 etc) */
  .numbertext {
    left: 0px;
    color: #ffffff;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    z-index: 1;
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #ff9900;
    border-radius: 20%;
    display: inline-block;
    transition: background-color 0.6s ease;
    z-index: 1;
  }

  .clearfix:after {
    content: "";
    display: table;
    clear: both;
    z-index: 1;
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }

  /* PLAYERS */

  .desc {
    font-size: 14px;
  }

  * {
    box-sizing: border-box;
  }

  .main {
    max-width: 1000px;
    margin: auto;
  }

  .row {
    margin: 5px;
  }

  /* Add padding BETWEEN each column */
  .row,
  .row>.column {
    padding: 5px;
  }

  /* Create three equal columns that floats next to each other */
  .column {
    float: left;
    width: 20%;
    display: none;
  }

  /* Clear floats after rows */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  /* Content */
  .content {
    background-color: white;
    padding: 3px;
  }

  /* The "show" class is added to the filtered elements */
  .show {
    display: block;
  }

  /* Style the buttons */
  .playerbtn {
    font-family: inherit;
    border: none;
    outline: none;
    padding: 12px 16px;
    cursor: pointer;
    margin-left: 5px;
  }

  .playerbtn:hover {
    background-color: rgb(33, 66, 235);
    color: #ff9900;
  }

  .playerbtn.active {
    background-color: orange;
    color: blue;
  }

  #myBtnContainer {
    text-align: center;
  }

  /* MATCHES */

  table {
    max-width: 90%;
    margin: 10px;
    justify-content: center;
  }

  .estadisticas {
    font-size: 20px;
  }

  .headinfo {
    font-size: 25px;
  }

  .center {
    display: flex;
    justify-content: center;
  }

  .infotable {
    text-align: center;
    justify-content: center;
  }

  .goleadores {
    text-align: left;
  }

  /* TABLET */

  @media only screen and (min-width:481px) and (max-width:766px) {
    /* HEADER */
    .topnav a:not(:first-child), .dropdown .dropbtn {
      display: none;
    }
    .topnav a.icon {
      float: right;
      margin-top: 10px;
      display: block;
    }

    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      width: 100%;
      text-align: left;
    }

    /*... */
    h1 {
      font-size: 35px;
    }

    h2 {
      font-size: 28px;
    }

    h3 {
      font-size: 22px;
    }

    h4 {
      font-size: 18px;
    }    
    
    /* STAFF */
    .desc {
      font-size: 15px;
    }

    .infostaff {
      font-size: 17px;
    }

    .staffname .infostaff {
      width: 50%;
      margin-left: 190px;
    }
  }

  /* MÓVIL */

  @media only screen and (max-width:480px) {
    /* HEADER */
    .topnav a:not(:first-child), .dropdown .dropbtn {
      display: none;
    }
    .topnav a.icon {
      float: right;
      margin-top: 10px;
      display: block;
    }

    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      width: 100%;
      text-align: left;
    }

    /*... */
    h1 {
      font-size: 35px;
    }

    h2 {
      font-size: 28px;
    }

    h3 {
      font-size: 22px;
    }

    h4 {
      font-size: 18px;
    }    
    
    /* STAFF */
    .desc {
      font-size: 15px;
    }

    .infostaff {
      font-size: 17px;
    }

    .staffname .infostaff {
      width: 50%;
      margin-left: 190px;
    }
  }