/* Verze 8.0.9393.24853 (19.09.2025 13:48:27) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Campton Book';
}

body {
    display: flex;
    flex-direction: column;
    text-align: center; 
}


footer {
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: right;
    padding-right: 5px;
    font-size: xx-small;
}

header.title {
    background-color: white;
    padding: 5px;
    text-align: center;
}

a.data_source {
    font-size: xx-small;
    padding: 5px;
    color: darkgray;
}

main {
    flex: 1;
    overflow-y: visible;
}

main.plant {
    margin-top: 3px;
    background-color: white;
}

.header-top-right {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 10px;
}

.header-bottom-right {
    position: absolute;
    top: 100px;
    right: 0px;
    padding: 10px;
    font-size: small;
}

/* Globální styl pro barevný pruh */
.year-stripe {
    color: white;
    background-color: #14387f;
    width: 100%; /* Zabírá celou šířku */
    display: flex;
    justify-content: left; /* Horizontální zarovnání */
    align-items: center; /* Vertikální zarovnání */
    padding: 5px;
    padding-left: 30px;
}

.error-stripe {
    color: white;
    background-color: brown;
    width: 100%; /* Zabírá celou šířku */
    display: flex;
    justify-content: left; /* Horizontální zarovnání */
    align-items: center; /* Vertikální zarovnání */
    text-align: left;
    margin-top: 3px;
    padding: 5px;
    padding-left: 30px;
}

.warning
{ 
	color: brown;
    display: none;
    margin-top: 20px;
    font-family: 'Campton Bold';
    text-align: left;
    margin-left: 30px;
}

table.data_table 
{ 
    margin-left: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
}

table.data_table tr:hover:not(:first-child) 
{
    background-color: #f0f0f0; /* Světle šedé pozadí při najetí */
    background-color: #14387f30; /* Světle šedé pozadí při najetí */
}

table.data_table th
{    
    border-bottom: 1px solid;
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: left;
}

table.data_table td
{
	padding-right: 10px;
    padding-left: 20px;
    text-align: left;
}

div.inline {
    display: inline;
}

.full-height {
    height: 100%;
}

#map {
    width: 100%;
}

.search-overlay {
    position: fixed;
    width: 190px;
    height: 30px;
    top: 140px; /* Pevná vertikální pozice */
    left: 55px; /* Pevná horizontální pozice */
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    z-index: 900; /* Zajistí, že překryv bude nad ostatními prvky */
    border: 1px solid #14387f;
    background-color: white;
}

#search-input {
    position: absolute;
    top: 0;
    left: 25px;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    background: none;
    box-sizing: border-box;
}

.overlay-content {
    text-align: center;
}

#search-btn {
    border: 0; 
    background:transparent; 
    padding: 0; 
    cursor: pointer;
    display: block; 
    align-items: left; 
    justify-content: left;
}

/* Skryje focus kolem 'lupy' při návratu z hledání */
#search-btn:focus-visible { outline: none; }

#search-message {
    position: fixed;
    padding-left: 10px;
    padding-right: 10px;
    top: 175px; /* Pevná vertikální pozice */
    left: 55px; /* Pevná horizontální pozice */
    border-radius: 25px;
    overflow: hidden;
    color: #fff;
    z-index: 900; /* Zajistí, že překryv bude nad ostatními prvky */
    border: 1px solid #14387f;
    background: #b22222;
}

.hidden { display: none; }

.svg-icon {
    width: 22px;
    height: 22px;
    margin-top: 5px;
    margin-left: 5px;
    cursor: pointer;    
}

/* Plovoucí modální okno s výsledky hledání */
.modal {
    display: none; /* Skryté na začátku */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* Obsah modálního okna */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #14387f;
    width: 80%;
}

/* Uzavírací tlačítko */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: #14387f;
    text-decoration: none;
    cursor: pointer;
}

/* Styl řádků v tabulce s výsledky hledání */
#resultTable table{
    border-collapse: collapse;
    table-layout: fixed;
}

#resultsTable td {
    padding: 2px;
    text-align: left;
    font-size: 12px;
}

#resultsTable th
{
    font-size: 12px;
    text-align: left;
    padding: 4px;
    border-bottom: 1px solid #14387f;
    font-family: 'Campton Bold';
}

/* Zvýraznění řádku v tabulce při přejetí myší */
#resultsTable tbody tr:hover {
    color: white;
    background-color:#14387f;
    cursor: pointer;
}
