
  /* CSS for queens-cup.htm */

  html {
    background-color: rgb(25, 126, 160);
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

  header, footer, nav {
    display: block;
  }

  /* Etiquetas ESTRUCTURALES */

  body {
    width: 100%;
    font-family: 'Agbalumo', Arial, sans-serif;
  }

  body, header, footer {
    margin: 0;
  }

  header {
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 100;
    margin-top: -50px;
  }

  p, table {
    text-align: center;
    font-size: 20px;
  }

  p {
    padding: 0px;
    margin: 5px;
  }

  footer {
    width: 100%;
    height: auto;
    background-color: blue;
  }

  footer nav {
    color: #ff9900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contacto {
    color: #ff9900;
  }

  a:visited {
    color: rgb(250, 136, 30);
    background-color: transparent;
  }

  /* CLASES */

  .row {
    display: flex; /* Coloca las imágenes en línea */
    justify-content: center; /* Centra las imágenes horizontalmente */
    flex-wrap: wrap; /* Permite que se ajusten en pantallas pequeñas */
    gap: 20px; /* Espaciado entre imágenes */
  }

  .column {
    text-align: center; /* Centra el contenido de cada columna */
  }

  .column img {
    width: 130px; /* Ajusta el tamaño de las imágenes */
    height: auto;
  }

  .logo {
    width: 37px; /* Ajusta el tamaño del logo */
    height: auto;
  }

  .presis {
    display: block;
    margin: auto;
  }

  /* ESTILOS */

  h1 {
    font-size: 50px;
    text-align: center;
    color: black;
    margin-top: 90px;
  }

  h2 {
    font-size: 45px;
    color: rgb(255, 153, 0);
    text-align: center;
  }

  h3 {
    font-size: 23px;
    color: rgb(48, 48, 243);
    text-align: center;
  }

  h4 {
    font-size: 20px;
    color: rgb(250, 136, 30);
    text-align: center;
    margin: 20px;
  }

  .infotimeline {
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    font-size: 20px;
    color: rgb(0, 0, 0);
  }

  .leftinfotabla {
    font-size: 22px;
  }

  .rightinfotabla {
    font-size: 20px;
    /* font-family: 'Times New Roman', Times, serif; */
    text-align: left;
  }

  .widthtable {
    width: 40%;
  }

  nav {
    text-align: center;
  }

  /* HEADER */

  .topnav {
    overflow: hidden;
    background-color: blue;
    margin-top: -40px;
  }

  .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;
  }

  /* TIMELINE */
  * {
    box-sizing: inherit;
  }

  /* The actual timeline (the vertical ruler) */
  .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }

  /* Container around content */
  .container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
  }

  /* The circles on the timeline */
  .container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }

  /* Place the container to the left */
  .left {
    left: 0;
  }

  /* Place the container to the right */
  .right {
    left: 50%;
  }

  /* Add arrows to the left container (pointing right) */
  .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent lightblue;
  }

  /* Add arrows to the right container (pointing left) */
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent lightblue transparent transparent;
  }

  /* Fix the circle for containers on the right side */
  .right::after {
    left: -16px;
  }

  /* The actual content */
  .TimelineContent {
    padding: 10px;
    background-color: lightblue;
    position: relative;
    border-radius: 6px;
  }

  /* PLANTILLA */

  .main {
    /* margin: 100px; */
    text-align: center;
  }

  .column {
    text-align: center;
    width: 14%;
    margin-bottom: 16px;
    padding: 0 8px;
  }

  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  }

  .box {
    padding: 10px 0px;
  }

  .box::after, .row::after {
    content: "";
    clear: both;
    display: table;
  }

  .title {
    color: rgb(0, 0, 0);
    text-decoration: underline;
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .playerinfo {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
    font-size: 16px;
  }

  .row {
    margin: 10px -16px;
  }

  /* Add padding BETWEEN each column */
  .row,
  .row>.column {
    padding: 0px;
  }

  /* Create three equal columns that floats next to each other */
  .column {
    float: left;
    width: 19%;
    display: none; /* Hide all elements by default */
  }

  /* Clear floats after rows */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  /* Content */
  .PlayerContent {
    background-color: white;
    padding: 5px;
    margin: 0px;
  }

  /* The "show" class is added to the filtered elements */
  .show {
    display: block;
  }

  /* Style the buttons */
  .btn {
    font-family: inherit;
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: rgb(0, 217, 255);
    cursor: pointer;
  }

  .btn:hover {
    background-color: white;
  }

  .btn.active {
    background-color: #002fff;
    color: white;
  }

  /* ARROW BUTTON */

  #arrowBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0px;
    border-radius: 4px;
    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; 
  }

  /* PANTALLA */

  @media only screen and (min-width:752px) {
  }

  /* TABLET */

  @media only screen and (min-width:481px) and (max-width:759px) {
    h1 { font-size: 45px; }
    h2 { font-size: 40px; }

    .widthtable { width: 90%; }
    .leftinfotabla { font-size: 22px; }
    .rightinfotabla { font-size: 20px; }

    .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;
    }

    /* TIMELINE */
    /* Place the timelime to the left */
    .timeline::after {
      left: 31px;
    }
    
    /* Full-width containers */
    .container {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
    
    /* Make sure that all arrows are pointing leftwards */
    .container::before {
      left: 60px;
      border: medium solid white;
      border-width: 10px 10px 10px 0;
      border-color: transparent lightblue transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
      left: 15px;
    }
    
    /* Make all right containers behave like the left ones */
    .right {
      left: 0%;
    }

    /* PLANTILLA */
    .column {
      width: 48%;
      display: block;
    }
  }

  /* MÓVIL */

  @media only screen and (max-width:480px) {
    h1 { font-size: 35px; }
    h2 { font-size: 40px; }

    .widthtable { width: 90%; }
    .leftinfotabla { font-size: 22px; }
    .rightinfotabla { font-size: 18px; }

    .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;
    }

    /* TIMELINE */
    /* Place the timelime to the left */
    .timeline::after {
      left: 31px;
    }
    
    /* Full-width containers */
    .container {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
    
    /* Make sure that all arrows are pointing leftwards */
    .container::before {
      left: 60px;
      border: medium solid white;
      border-width: 10px 10px 10px 0;
      border-color: transparent lightblue transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
      left: 15px;
    }
    
    /* Make all right containers behave like the left ones */
    .right {
      left: 0%;
    }

    /* PLANTILLA */
    .column {
      width: 45%;
      display: block;
    }
  }