/*********************************************************************************/
/* Sekce klub                                                                    */
/*********************************************************************************/
.table-klub {
    padding-top: 0.2em; 
    padding-bottom: 0.2em; 
    width: 80%;
    } 
    
.table-klub-strong {
    font-weight: bold;
    }

/*********************************************************************************/
/* VÝSLEDKY ČLÁNKY                                                               */
/*********************************************************************************/
.vyhra {color: green; font-weight: bold;}
.remiza {color: #000; font-weight: bold;}
.prohra {color: red; font-weight: bold;}

/*********************************************************************************/
/* kontakt                                                                       */
/*********************************************************************************/
/* Základní styl */
body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

/* Nadpis */
h1 {
    font-size: 1.6em;
    margin: 1em 0 0.5em;
    color: #333;
}

/* Kategorie */
.kategorie-vedeni,
.kategorie {
    font-size: 1.1em;
    color: #cc0000;
    font-weight: bold;
}

/* Wrapper pro dvojice boxů */
.kontakt-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    margin-bottom: 2em;
    justify-content: flex-start;
}

/* Obecný box */
.kontakt-box {
    flex: 1 1 300px;
    font-size: 1em;
    box-sizing: border-box;
}

/* Levá část */
.box-left {
    max-width: 470px;
}

/* Pravá část: mapa */
.box-right {
    max-width: 470px;
    border: none;
}

/* Mapa */
.map-container {
    position: relative;
    width: 100%;
    aspect-ratio: 470 / 305;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mládežnické týmy — sjednocený box */
.boxAk {
    max-width: 100%;
    font-size: 1em;
}

/* Odstavce: jednotná mezera */
.kontakt-box p {
    margin-bottom: 0.8em;
}

.kontakt-box p:last-child {
    margin-bottom: 0;
}

/* Mobilní zobrazení */
@media screen and (max-width: 700px) {
    .kontakt-wrapper {
        flex-direction: column;
        gap: 1.5em;
    }

    .kontakt-box {
        max-width: 100%;
    }

    h1 {
        font-size: 1.4em;
        text-align: center;
    }
}


/*********************************************************************************/
/* načítání zápasů pro HCM moduly -- sekce zápasy                                */
/*********************************************************************************/
#tablezapasy {
    margin: 0em auto;
    }
    
#tablezapasy tr {
    height: 6em;
	}
    
.zapasy-radek {
    border-bottom: 1px solid;
}
    
.zapasy-zapas {
    width: 38em;
padding-left: 2em;
}
    
.zapasy-logo {
    padding-left: 1em;
	}  

.zapasy-kolo {
	}  

.zapasy-tymy {
    font-weight: bolt;
    font-size: 1.5em;
	}  

.zapasy-skore-p {
    font-weight: bolt;
    font-size: 3em;
    color: #cc0000;
    text-align: center;
}

.zapasy-skore-r {
    font-weight: bolt;
    font-size: 3em;
    text-align: center;
	}  
    
.zapasy-skore-v {
    font-weight: bolt;
    font-size: 3em;
    color: #44b404;
    text-align: center;
	}  
    
.zapasy-skore-d {
    font-weight: bolt;
    font-size: 2em;
    text-align: center;
	} 
    
.zapasy-penalty {
    font-size: 0.75em;
	}





	
/* tagy */
legend {
    color: #000000;
    }

/*********************************************************************************/
/* filtr zobrazování sezóny                                                      */
/*********************************************************************************/
#filtr {
    background-color: #cc0000; 
    width:100%;
    }
.filtr-l {
    width:700px; 
    float: left;
    }
.filtr-l h1 {
    color: #fff; 
    font-size: 1.2em; 
    margin-bottom: 0.9em; 
    padding-left: 0.9em; 
    padding-top: 0.3em; 
    padding-bottom: 0.3em;
    }
.filtr-p {
    text-align: right; 
    padding-top: 8px; 
    padding-bottom:8px;
    padding-right:8px;
}
    

/*********************************************************************************/
/* TABULKA                                                                       */
/*********************************************************************************/
/* Základní styl tabulky */
.Table {
  width: 100%;
  border-collapse: collapse;
  color: #333;
}

/* Styl hlavičky a buněk */
.Table th,
.Table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

/* Hlavička tabulky */
.Table th {
  background-color: #fff;
  color: #cc0000;
  font-weight: bold;
  text-transform: uppercase;
}

/* Lichý řádek - bílé pozadí */
.Table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

/* Sudý řádek - světle šedé pozadí */
.Table tbody tr:nth-child(even) {
  background-color: #fbeaea;
}

.fc-kostelec{
  font-weight: bold;
}

/* Styly pro sticky buňky (pokud je potřeba) */
.u-sticky-cell {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  background-color: inherit; /* Používá barvu pozadí řádku */
  z-index: 1;
}

/* Centrování textu pro specifické sloupce */
.u-ta-center {
  text-align: center;
}

/* Úprava odsazení a mezer uvnitř buněk */
.Table td strong {
  color: #cc0000;
}
/* Media query pro obrazovky s maximální šířkou 768px (typicky mobilní zařízení) */
@media screen and (max-width: 768px) {
  /* Skryjeme některé sloupce, aby se tabulka lépe vešla */
  .Table th:nth-child(4),
  .Table td:nth-child(4), /* sloupce 'Z' */
  .Table th:nth-child(5),
  .Table td:nth-child(5), /* sloupce 'V' */
  .Table th:nth-child(6),
  .Table td:nth-child(6) { /* sloupce 'R' */
    display: none;
  }
}