/* General Styles */
body {
    font-family: "reross-quadratic", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 16px;
    /*font-family: 'Roboto', Arial, sans-serif;*/
    margin: 5px;
    background-color: #f9f9f9;
    line-height: 1.6;
    color: #333;
}

header, nav, main, footer {
    margin-bottom: 20px;
}

/* Header Styles */
header {
    display:flex;
    flex-direction:column;
    align-items:center;
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-bottom:1px solid #ddd;
}


a {
    color: #0044cc; /* Color azul accesible */
    text-decoration: underline;
}

a:hover {
    color: #0056b3; /* Azul más oscuro al pasar el cursor */
}

h1, h2, h3, h4, h5, h6 {
    color: #333; /* Asegura buen contraste para encabezados */
}

h1 a {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

h1:hover a {
    text-decoration: underline;
    color: #000000;
}

/* Nav Styles */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
}

header .logo {
    max-width: 100%;
    height: auto;
    width: 80px; /* Ajusta el tamaño según sea necesario */
}

header .site-title {
    flex-grow: 1;
    text-align: center;
    margin: 0;
}

header .site-title a {
    text-decoration: none;
    color: #000;
    font-size: 24px; /* Ajusta el tamaño de la fuente según sea necesario */
    font-weight: bold;
}


.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.primary-nav {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    background-color: #343a40;
    width:100%;
}

.primary-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.primary-nav li {
    margin: 0;
}

.primary-nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.primary-nav a:hover {
    background-color: #495057;
    border-radius: 4px;
}

.team-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-logos li {
    margin: 10px;
}

.team-logos img {
    height: 40px; /* Ajusta el tamaño del logotipo según tu necesidad */
    transition: transform 0.3s ease;
}

.team-logos img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content:flex-start;
        align-items:center;
    }
    
    header .logo {
        max-width: 50px; /* Ajusta el tamaño para pantallas pequeñas */
    }
    header .site-title {
        font-size: 18px; /* Ajusta el tamaño del texto según sea necesario */
        text-align:left;
        margin-left:10px;
    }
    .menu-toggle {
        display: block;
        color:#000;
        margin-left:auto;
    }
    .primary-nav {
        display:none;
        flex-direction: column;
        align-items:center;
    }
    .primary-nav.open {
        display: flex;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 10px;
    }
        .search-container {
        margin-top: 20px;
    }
}

/* Search Form Styles */
.search-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    background-color: #f4f4f4;
    border-bottom: 1px solid #ddd;
    align-items: center;
}

.search-form {
    margin-bottom: 20px;
    width: 50%;
}

.search-form input {
    justify-content: center;
    /*width: 100%;*/
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.1);
    /*flex: 1;*/
}

/* Principal styles */
.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.intro {
    text-align: left;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.matches {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    flex: 1;
    min-width: 300px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

.column h2 {
    text-align: center;
    margin-top: 0;
}

.column table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.column table th,
.column table td {
    padding: 10px;
    /*border: 1px solid #ddd;*/
    text-align: left;
}

.column table th {
    background-color: #f2f2f2;
    text-align: center;
}

.team {
    font-weight: bold;
}

.score {
    color: #0044cc;
}

.team-logo {
    margin-right: 10px;
}

.team-ticker {
    display: flex;
    align-items: center;
    /*margin: 5px 0;
    padding: 5px;*/
    /*border: 1px solid #ddd;*/
    border-radius: 5px;
    /*background-color: #f9f9f9;*/ /* Cambia el color de fondo si es necesario */
}
.team-ticker a {
    text-decoration: none;
    color: inherit;
}

.ticker-league {
    background-color: #007bff; /* Cambia este color según sea necesario */
    color: white;
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: bold;
    margin-right: 10px;
    font-family: 'Consolas', 'Courier New', Courier, monospace; /* Fuente monospace */
    font-size: 13px; /* Tamaño de letra más pequeño */
    width: 40px; /* Ajusta el ancho fijo según sea necesario */
    text-align: center; /* Centra el texto dentro del ticker */
}

.ticker-league a {
    text-decoration: none;
    color: inherit;
}

.ticker-symbol {
    background-color: #007bff; /* Cambia este color según sea necesario */
    color: white;
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: bold;
    margin-right: 10px;
    font-family: 'Consolas', 'Courier New', Courier, monospace; /* Fuente monospace */
    font-size: 13px; /* Tamaño de letra más pequeño */
    width: 40px; /* Ajusta el ancho fijo según sea necesario */
    text-align: center; /* Centra el texto dentro del ticker */
}

.ticker-symbol-title {
    background-color: #007bff; /* Cambia este color según sea necesario */
    color: white;
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: bold;
    margin-right: 10px;
    font-family: 'Consolas', 'Courier New', Courier, monospace; /* Fuente monospace */
    font-size: 21px; /* Tamaño de letra más pequeño */
    width: 50px; /* Ajusta el ancho fijo según sea necesario */
    text-align: center; /* Centra el texto dentro del ticker */
}

.team-name {
    font-size: 14px;
    color: #333;
}

.team-position {
    display: flex;
    align-items: center;
    /*gap: 10px;*/
}

/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
    .team-position {
        flex-direction: column;
        align-items: center;
        text-align: center;
        /*gap: 0px;*/
    }

    .team-logo {
        margin-right: 0;
        margin-bottom: 5px;
    }


    .team-position .team-ticker .ticker-symbol {
        font-size: 10px; /* Tamaño de letra más pequeño */
        padding: 1px 1px;
        width: 30px; /* Ajusta el ancho fijo según sea necesario */
    }

    .team-name {
        font-size: 12px; /* Tamaño de letra más pequeño */
        display:none;
    }
        /* Ajustes adicionales para mejorar la presentación en pantallas pequeñas */
    td, th {
        padding: 5px; /* Reduce el padding para ahorrar espacio */
    }

    th, td {
        font-size: 12px; /* Tamaño de letra más pequeño para las celdas */
    }

    table {
        width: 100%; /* Asegura que la tabla ocupe todo el ancho disponible */
    }
}

@media (max-width: 768px) {
    .matches {
        flex-direction: column;
    }
    .ticker-symbol {
        background-color: #007bff; /* Cambia este color según sea necesario */
        color: white;
        padding: 3px 5px;
        border-radius: 3px;
        font-weight: bold;
        margin-right: 10px;
        font-family: 'Consolas', 'Courier New', Courier, monospace; /* Fuente monospace */
        font-size: 13px; /* Tamaño de letra más pequeño */
        width: 40px; /* Ajusta el ancho fijo según sea necesario */
        text-align: center; /* Centra el texto dentro del ticker */
    }

}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Estilo para las celdas */
table th, table td {
    border: none;
    padding: 10px;
    text-align: left;
}

table, th, td {
    /*border: 1px solid #ddd;*/
    padding: 8px;
}

th {
    background-color: #f4f4f4;
}

/* Estilo para los encabezados */
table thead th {
    background-color: #f8f9fa; /* Color de fondo para los encabezados */
    font-weight: bold;
    color: #0044cc; /* Color de texto para los encabezados */
}

table thead th a {
    color: #0044cc; /* Un azul más oscuro para el título de la tabla */
    text-decoration: none;
}

table thead th a:hover {
    text-decoration: underline;
}

/* Estilo para las filas alternas */
table tbody tr:nth-child(odd) {
    background-color: #f2f2f2; /* Color de fondo para filas alternas */
}

/* Estilos para la tabla en pantallas pequeñas */
@media (max-width: 600px) {
    .table-responsive {
        overflow-x: auto;
    }
    table {
        font-size: 12px;
    }
    th, td {
        padding: 4px;
    }
    th[title]:hover::after {
        content: attr(title);
        position: absolute;
        background: #333;
        color: #fff;
        padding: 5px;
        border-radius: 5px;
        white-space: nowrap;
        z-index: 1;
    }
}
/* Section Styles */
section {
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
    padding: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.footer-content .logo {
    max-width: 100px; /* Ajusta el tamaño según sea necesario */
    height: auto;
    margin-right: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.footer-nav ul li {
    margin: 0 15px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.footer-info {
    text-align: center;
    max-width: 800px;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-content .logo {
        margin-bottom: 10px;
    }
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
    }
    .footer-nav ul li {
        margin: 5px 0;
    }
}

/* Team Information Styles */
.team-info {
    display: flex;
    align-items: inherit;
    /*gap: 10px;*/
    width:47%;
}

.team-company-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

 .company-profile {
    flex: 1 1 48%;
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .team-info, .company-profile {
        flex: 1 1 100%;
    }
}

.team-info ul {
    list-style: none;
    padding: 0;
}

.team-info ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.team-info ul li a {
    text-decoration:none;
}


/* Charts Section */
.charts {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.chart-container {
    width: 90%;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

.tradingview-widget-container {
    width: 100%;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

@media (min-width: 600px) {
    .charts {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Styles for the Different Levels */
ul.league-list {
    list-style: none;
    padding-left: 0;
}

ul.league-list li a {
    text-decoration: none;
    color: #0044cc; /* Color azul para los enlaces */
    /*display: block;*/
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
/*#0044cc  ENLACE*/
ul li a:hover {
    background-color: #e7f3ff; /* Color de fondo al pasar el cursor */
}

ul li.tier1 {
    font-weight: bold;
}

ul li.tier2 {
    margin-left: 15px;
}

ul li.tier3 {
    margin-left: 30px;
}

ul li.tier4 {
    margin-left: 45px;
}

ul li.tier5 {
    margin-left: 60px;
}
ul li.tier6 {
    margin-left: 75px;
}
ul li.tier7 {
    margin-left: 90px;
}

@media (max-width: 600px) {
    ul li.tier2 {
        margin-left: 1em; /* Menos margen en pantallas pequeñas */
    }
    ul li.tier3 {
        margin-left: 2em; /* Menos margen en pantallas pequeñas */
    }
    ul li.tier4 {
        margin-left: 3em; /* Menos margen en pantallas pequeñas */
    }
    ul li.tier5 {
        margin-left: 4em; /* Menos margen en pantallas pequeñas */
    }
    ul li.tier6 {
        margin-left: 4em; /* Menos margen en pantallas pequeñas */
    }
    ul li.tier7 {
        margin-left: 4em; /* Menos margen en pantallas pequeñas */
    }
    ul li a {
        padding: 6px; /* Menos relleno en pantallas pequeñas */
    }
}

/* Basic Styles for Teams List */
.teams-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.team-group h3 {
    margin: 0;
}

@media (max-width: 600px) {
    .teams-list {
        grid-template-columns: 1fr;
    }
}

/* FAQ styles */
.faq-section {
    margin-bottom: 20px;
}

.faq-section h2 {
    color: #0044cc;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-section h2::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
}

.faq-section.open h2::after {
    content: '-';
}

.faq-section p {
    display: none;
    color: #555;
    margin: 10px 0;
}

.faq-section.open p {
    display: block;
}

/* Contact styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #0044cc;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    input, textarea {
        font-size: 14px;
    }
}

/* Estilos para los resultados de búsqueda */
.search-results {
    margin-top: 20px;
}

.search-results ul {
    list-style-type: none;
    padding: 0;
}

.search-results li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.search-results li a {
    text-decoration: none;
    color: #0044cc;
}

.search-results li a:hover {
    text-decoration: underline;
}

/*SCORE estyles*/
.positive {
    color: green;
}
.negative {
    color: red;
}
.pending {
    color: #999;
}
.result-summary {
    font-weight: bold;
    text-decoration: none; /* Remover subrayado */
}

.result-summary.team1 {
    color: #007BFF; /* Azul para el equipo 1 ganador */
}

.result-summary.team2 {
    color: #28a745; /* Verde para el equipo 2 ganador */
}

.result-summary.tie {
    color: #6c757d; /* Naranja para empate */
}

/* Hover effect */
/*.result-summary:hover {
    text-decoration: underline; /* Subrayado al pasar el cursor 
}*/

/*tooltip styles*/
.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: 125%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
}

.tooltip.active::after {
    opacity: 1;
    pointer-events: auto;
}

.tooltip:hover::after,
.tooltip:focus::after {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 600px) {
    .tooltip::after {
        bottom: auto;
        top: 100%;
    }
}
.tooltip.active::after {
    opacity: 1;
    visibility: visible;
}

/* Cookie Banner Styles */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    color: #000;
    padding: 15px;
    text-align: center;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
    display: inline-block;
}

.cookie-link {
    color: #0044cc;
    text-decoration: underline;
}

.cookie-button {
    background-color: #0044cc;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-button:hover {
    background-color: #0056b3;
}

/*DO-NOT-SELL */
#opt-out-button {
  background-color: #0044cc;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#opt-out-button:hover {
  background-color: #0d6aad;
}

/*Transition*/
.page-transition {
  opacity: 0;
  transition: opacity 0.5s;
}

.page-transition.in {
  opacity: 1;
}

/* Estilo para el enlace "Show More" */
.hidden {
    display: none;
}

.show-more {
    cursor: pointer;
    color: blue; /* Cambia el color si lo deseas */
    text-decoration: underline;
}

/*Estilo de News*/
#latest-news {
    margin: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

#latest-news h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.news-item {
    /*background-color: #ffffff;*/
    /*border: 1px solid #ddd;*/
    border-bottom: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    width: 48%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
}

.news-image img {
    width: 150px; /* Ajusta el ancho */
    height: auto; /* Mantiene la proporción */
    object-fit: cover; /* Ajuste de imagen */
    margin-right: 10px; /* Espacio entre imagen y contenido */
}

.news-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item h4 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #007bff;
}

.news-item h4 a {
    text-decoration: none;
    color: #007bff;
}

.news-item h4 a:hover {
    text-decoration: underline;
}

.news-content p {
    flex-grow: 1;
    font-size: 0.9em;
    color: #555;
    margin-top: 10px; /* Añadir margen superior */
}

.published-date {
    font-size: 0.8em;
    color: #888;
    margin-bottom: 10px; /* Añadir margen inferior */
}

.external-link-icon {
    margin-left: 5px;
}

/* Estilos para las noticias antiguas */
.hidden-news {
    display: none;
}

.show-more-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin: 20px 0;
    cursor: pointer;
    color: #007bff;
}

.show-more-btn:hover {
    text-decoration: underline;
}

/* Estilos para el grid de noticias antiguas */
.older-news-grid {
    display: grid;
    gap: 20px;
}

.older-news-grid .news-item {
    border-bottom: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    padding: 2px;
    flex-wrap:wrap;
    flex-direction:column;
}

@media (max-width: 768px) {
    .news-container {
        width:90%;
        /*grid-template-columns: 1fr;*/
    }
    .news-item {
        width:100%;
        /*grid-template-columns: 1fr;*/
    }
    .news-content p {
        display: none;
    }
    .older-news-grid {
        grid-template-columns: 1fr;
    }
}
/*@media (min-width: 601px) {
    .older-news-grid {
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
    }
}*/
/*ESTILOS SOCIAL BOTON*/
        .social-links-footer {
            text-align: center;
            margin-top: 20px;
        }
        .social-links-footer a {
            margin: 0 15px;
            color: #000;
            text-decoration: none;
            display: inline-block;
        }
        .social-links-footer i,
        .social-links-footer img {
            font-size: 36px; /* Tamaño del icono */
            filter: grayscale(100%); /* Escala de grises */
            transition: filter 0.3s, color 0.3s;
        }
        .social-links-footer a:hover i,
        .social-links-footer a:hover img {
            filter: grayscale(0%);
            color: inherit; /* Cambiar al color original del icono */
        }
        
/* Estilo para la clase ticker TOTW*/
.ticker {
    color: #000;
}

/* Estilo para el span TOTW */
.totw {
    background-color: #EABE3F; /* Cambia este color según sea necesario */
    color: #FFF;
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: bold;
    margin-right: 10px;
    font-family: 'Consolas', 'Courier New', Courier, monospace; /* Fuente monospace */
    font-size: 13px; /* Tamaño de letra más pequeño */
    width: 40px; /* Ajusta el ancho fijo según sea necesario */
    text-align: center; /* Centra el texto dentro del ticker */
    /*color: #EABE3F; /* Oro */
}

/* Ocultar el span TOTW en pantallas pequeñas y aplicar la clase ticker al resultado */
@media (max-width: 600px) {
    .totw {
        display: none;
    }
    td.ticker {
        content: attr(data-towt);
        font-weight: bold;
        color: #000;
    }
}
/*STYLES TABLAS INDEX.PHP*/
/*.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}*/

.intro, #psl {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

#leagues {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.standings-column {
    display: flex;
    flex-direction: column;
}
    @media (max-width: 600px) {
    .container {
        grid-template-columns: 1fr;
    }
    #leagues {
        grid-template-columns: 1fr;
    }
    }
    button {
    display: block;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

button:hover {
    background-color: #555;
}
/*ESTILOS Pyramide*/
        .pyramid {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 20px;
        }
        .level {
            display: flex;
            justify-content: center;
            margin: 10px 0;
            color: #FFF;
        }
        .block {
            width: 150px;
            padding: 10px;
            margin: 5px;
            text-align: center;
            border: 1px solid #333;
            background-color: #f4f4f4;
        }
        /*.level .block {
            background-color: #ddd;
        }*/
        .row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        .non-league-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            color:#FFF;
        }
        .arrow {
            margin: 5px 0;
            font-size: 24px;
        }
        .arrow-up::before {
            content: '⬆️';
            /*display: block;*/
        }
        .arrow-down::after {
            content: '⬇️';
            /*display: block;*/
        }
        .psl {
            background-color:#000080;
        }
        .sternleague {
            background-color:#8B0000;
        }
        .regional {
            background-color:#006400;
        }
        .county {
            background-color:#FF8C00;
        }
        .township {
            background-color:#4B0082;
        }
        .district {
            background-color:#CC9933;
        }
        .nonleague {
            background-color:#000;
        }
        
/*ESTILOS PARA SCHEDULE & CALENDAR */
.filter-section {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.filter-section label {
    margin-right: 10px;
}

.filter-section select {
    margin-right: 20px;
    padding: 5px;
}

.schedule-container {
    width: 80%;
    margin: 0 auto;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th, .schedule-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.schedule-table th {
    background-color: #f4f4f4;
}

.vs {
    margin:5px;
}
/*.totw {
    font-weight: bold;
    color: #d9534f; /* Example color for TOTW 
}*/