/* STREAMING_CHUNK:Definování základních stylů stránky... /
/ Základní jednoduché styly pro ručně psaný web */
body {
font-family: sans-serif;
background-color: #ffffff;
color: #000000;
margin: 0;
padding: 0;
line-height: 1.5;
}

.container {
max-width: 650px;
margin: 0 auto;
padding: 15px;
}

/* STREAMING_CHUNK:Styling přepínače jazyků a vlajky... */
.lang-switch {
text-align: right;
padding: 8px 15px;
background-color: #f0f0f0;
border-bottom: 1px solid #ccc;
font-size: 14px;
}

.lang-switch a {
color: #0000ee;
text-decoration: none;
font-weight: bold;
}

.lang-switch a.active {
color: #000;
text-decoration: underline;
}

.bi-flag {
    width: 100%;
    height: 180px; /* Pevná výška nahoře */
    object-fit: fill; /* Přinutí obrázek roztáhnout se do stran i výšky bez ořezávání! */
    display: block;
    border-bottom: 1px solid #000;
}

/* STREAMING_CHUNK:Styling nadpisů a sekce s obrázkem... */
h1 {
font-size: 28px;
margin-top: 15px;
margin-bottom: 0px;
}

h2 {
font-size: 18px;
color: #444444;
margin-top: 2px;
font-weight: normal;
}

.text-with-image {
display: flex;
align-items: center;
gap: 15px;
margin: 20px 0;
}

.text-with-image p {
flex: 1;
margin: 0;
}

.bikisser-img {
max-width: 130px;
height: auto;
}

/* STREAMING_CHUNK:Styling boxu s počítadlem a tabulky... */
.relationship-box {
border: 1px solid #000;
padding: 12px;
margin: 20px 0;
background-color: #fff8fc;
}

.timer {
font-family: monospace;
font-size: 20px;
font-weight: bold;
margin-top: 5px;
}

table {
width: 100%;
border-collapse: collapse;
margin: 15px 0;
}

table, th, td {
border: 1px solid #888888;
}

th, td {
padding: 6px 10px;
text-align: left;
}

th {
background-color: #f2f2f2;
}

footer {
margin-top: 30px;
font-size: 12px;
color: #666;
border-top: 1px solid #ccc;
padding-top: 10px;
}