/* ===== VŠEOBECNÉ FORMÁTOVANIE TABULIEK .leaguetab ===== */
/* 1. Hlavička tabuľky */
.tablepress.leaguetab thead th {
  color: #1966bd; /* Farba textu */
}

/* 2. Telo tabuľky: Jednotná veľkosť písma */
.tablepress.leaguetab tbody td {
  font-size: 15px !important;
}

/* 3. Telo tabuľky: Striedavé riadky (zebra efekt) */
.tablepress.leaguetab tbody tr:nth-child(odd) {
  background-color: #f9f9f9; /* Jemná sivá pre nepárne riadky */
}

/* 4. Telo tabuľky: Posledný riadok vždy biely */
.tablepress.leaguetab tbody tr:last-child {
  background-color: #ffffff !important;
}

/* 5. Zmenšenie výšky všetkých riadkov (hlavička aj telo) */
.tablepress.leaguetab thead th,
.tablepress.leaguetab tbody td {
  padding-top: 4px;
  padding-bottom: 4px;
}

/* Hlavička CENNIKA: Modré písmo, o 20% väčšie */
#tablepress-RSK-CENNIK thead th {
  color: #1966bd;
  font-size: 100%;
}

/* 2. Telo tabuľky: Písmo o 20% menšie */
#tablepress-RSK-CENNIK tbody td {
  font-size: 80%;
}

/* Pridá pravý okraj (čiaru) za 3 stĺpec (td) v tele tabuľky */
#tablepress-2026-zreb-ligy td:nth-child(3) {
    /* Použi vlastnú farbu, hrúbku a typ čiary */
    border-right: 2px solid #e0e0e0;
}


/* Desktop (široké obrazovky) font a zarovnanie */
@media (min-width: 769px) {

/* FORMAT TABULIEK 10ENDOV GAMETAB10 */
	.tablepress.gametab10 tbody td {
		font-size: 15px;
		text-align: center;
	}

	.tablepress.gametab10 tfoot th {
		font-size: 15px;
		background-color: white;
	}

    /* === Pre tabuľku zreb-ligy === */
    .tablepress#tablepress-2026-zreb-ligy tbody td { 
    	font-size: 15px !important;
	padding: 5px 10px !important; 
	}
    /* Špeciálne nastavenie: Zarovnať stĺpec 2 a 4 (Tímy) doprava */
    .tablepress#tablepress-2026-zreb-ligy tbody td:nth-child(1),    
    .tablepress#tablepress-2026-zreb-ligy tbody td:nth-child(2),
    .tablepress#tablepress-2026-zreb-ligy tbody td:nth-child(4) {
	text-align: right; 
	white-space: nowrap; !important
	min-width: 300px; 
}


/* Nastavenie fontu pre bezne tabulky (vitazi ligy a aktualna liga) */
	#wp-block-table {
		font-size: 17px; 
	}

	#wp-block-table thead th {
		font-size: 18px;
	}

	/* Nastavenie fontu pre mixed doubles LSD */
	figure.wp-block-table.is-style-regular.mixed-doubles td,
	figure.wp-block-table.is-style-regular.mixed-doubles th {
		font-size: 18px; /* Nastavenie veľkosti písma */
		padding: 5px; /* Nastavenie vnútorného odsadenia */
	}
}
/* KONIEC Desktop (široké obrazovky) font a zarovnanie */   


/* Mobilné zariadenia (úzké obrazovky) font a zarovnanie */
@media (max-width: 768px) {
	.tablepress.gametab10 tbody td {
		font-size: 12px;
		text-align: center;
	}

	.tablepress.gametab10 tfoot th {
		font-size: 12px;
		background-color: white;
	}

    /* === Pre tabuľku zreb-ligy === */
    .tablepress#tablepress-2026-zreb-ligy tbody td { 
        /* Zmenšujeme font a padding s najvyššou prioritou */
    	font-size: 12px !important;
	padding: 1px 2px !important; 
	}
    /* Zarovnanie stĺpcov */
    .tablepress#tablepress-2026-zreb-ligy tbody td:nth-child(1) {
	text-align: right; 
}
    .tablepress#tablepress-2026-zreb-ligy tbody td:nth-child(2),
    .tablepress#tablepress-2026-zreb-ligy tbody td:nth-child(3), 
    .tablepress#tablepress-2026-zreb-ligy tbody td:nth-child(4),
    .tablepress#tablepress-2026-zreb-ligy tbody td:nth-child(5) {
	text-align: center; 
}

/* Nastavenie fontu pre bezne tabulky (vitazi ligy a aktualna liga) */
	.wp-block-table {
		font-size: 15px; 
	}

	.wp-block-table thead th {
		font-size: 18px;
	}

	/* Nastavenie fontu pre mixed doubles LSD */
	figure.wp-block-table.is-style-regular.mixed-doubles td,
	figure.wp-block-table.is-style-regular.mixed-doubles th {
		font-size: 12px; /* Nastavenie veľkosti písma */
		padding: 1px; /* Nastavenie vnútorného odsadenia */
	}
}
/* KONIEC Mobilné zariadenia (úzké obrazovky) font a zarovnanie */


/* biele pozadie head tabulky */
.tablepress.gametab10 thead th {
	background-color: white;
	text-align: left;
	padding: 0;
}

/* biele pozadie foot tabulky */
.tablepress.gametab10 tfoot th {
	background-color: white;
	text-align: right;
	font-weight: normal;
	padding: 0 0 0 0;
}

/*hlavicka - farba font */
.tablepress.gametab10 .row-2 td {
	background-color: #1f429d;
	color: white;
	font-weight: bold;
	border-top: 0;
}


/*prvy stlpec - zarovnanie doprava */
.tablepress.gametab10 td.column-1 {
	border-radius: 10px 0 0 0;
	font-weight: 500;
	text-align: right;
	width: 18%;
}

/* Media query pre mobilné zariadenia */
@media only screen and (max-width: 768px) {
	.tablepress.gametab10 td.column-1 {
		width: 10%; /* Mensia šírka pre mobilné zariadenia */
	}
}

/*poslednu stlpec - bold a radius */
.tablepress.gametab10 td.column-14 {
	border-radius: 0 10px 0 0;
	font-weight: 700;
	width: 10%;
}

/* farba timov modra */
.tablepress.gametab10 tr.row-3 td.column-2 {
	background-color: #1565b4;
	width: 15px;
	padding: 8px 8px 8px 8px;
}

/* farba timov zlta */
.tablepress.gametab10 tr.row-4 td.column-2 {
	background-color: #f3c937;
}

/* FORMAT TABULIEK 8 ENDOV GAMETAB8 */
/* Desktop (široké obrazovky) font a zarovnanie */
@media (min-width: 769px) {
	.tablepress.gametab8 tbody td {
		font-size: 15px;
		text-align: center;
	}

	.tablepress.gametab8 tfoot th {
		font-size: 15px;
	}
}

/* Mobilné zariadenia (úzké obrazovky) font a zarovnanie */
@media (max-width: 768px) {
	.tablepress.gametab8 tbody td {
		font-size: 12px;
		text-align: center;
	}

	.tablepress.gametab8 tfoot th {
		font-size: 12px;
	}
}

/* biele pozadie head tabulky */
.tablepress.gametab8 thead th {
	background-color: white;
	text-align: left;
	padding: 0;
}

/* biele pozadie foot tabulky */
.tablepress.gametab8 tfoot th {
	background-color: white;
	text-align: right;
	font-weight: normal;
	padding: 0 0 0 0;
}

/*hlavicka - farba font */
.tablepress.gametab8 .row-2 td {
	background-color: #1f429d;
	color: white;
	font-weight: bold;
	border-top: 0;
}

/*prvy stlpec - zarovnanie doprava */
.tablepress.gametab8 td.column-1 {
	border-radius: 10px 0 0 0;
	font-weight: 500;
	text-align: right;
	width: 18%;
}

/* Media query pre mobilné zariadenia */
@media only screen and (max-width: 768px) {
	.tablepress.gametab8 td.column-1 {
		width: 10%; /* Mensia šírka pre mobilné zariadenia */
	}
}

/*poslednu stlpec - bold a radius */
.tablepress.gametab8 td.column-12 {
	border-radius: 0 10px 0 0;
	font-weight: 700;
	width: 10%;
}

/* farba timov modra */
.tablepress.gametab8 tr.row-3 td.column-2 {
	background-color: #1565b4;
	width: 15px;
	padding: 8px 8px 8px 8px;
}

/* farba timov zlta */
.tablepress.gametab8 tr.row-4 td.column-2 {
	background-color: #f3c937;
}
