@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@400;600&display=swap');

/* Základní nastavení */
body {
    color: #3f3f3f; /* antracitová */
    font-size: 14px;
    font-family: 'Zilla Slab', Helvetica, Arial, serif;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Formularove prvky */
input, select {
    box-sizing: border-box;
    font-family: inherit;
}

/* Validacní hlášky */
.validationMessages {
    color: #3f3f3f;
    background-color: #ffd9d9;
    border-left: 4px solid #70b62c;
    padding: 10px;
}

.notice {
    color: #3f3f3f;
    background-color: #e6e6e6;
    border-left: 4px solid #3a70a8;
    padding: 10px;
}

/* Nadpisy */
h1.common {
    border-bottom: 2px solid #70b62c;
    font-size: 220%;
    margin: 0 0 15px;
    padding: 5px 0;
    color: #70b62c;
    font-weight: 600;
    line-height: 1.2;
}

h2.detail {
    color: #3a70a8; /* modrá */
    font-weight: 600;
}

h3.detail {
    color: #70b62c;
    font-weight: 600;
}

/* Odkazy */
a {
    color: #70b62c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3a70a8;
}

a.navigation {
    color: #ffffff;
    font-weight: bold;
}

a.content {
    color: #3a70a8;
}

a.detail, a.download {
    color: #3a70a8;
    text-decoration: underline;
}

/* Tabulky */
table.search {
    border: none;
    margin-bottom: 4px;
}

td.search {
    border: none;
    padding: 4px 8px;
    font-size: 13px;
    color: #3f3f3f;
}

table.content {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

th.content {
    color: #ffffff;
    background: #70b62c;
    font-weight: 600;
    text-align: left;
    padding: 10px;
}

td.content {
    border-bottom: 1px solid #e6e6e6;
    font-size: 13px;
    color: #3f3f3f;
    padding: 10px;
    background: #f9faf9;
}

table.navigation {
    width: 100%;
    border-bottom: none;
    background: #70b62c;
    text-align: center;
}

td.navigation {
    width: 33%;
}

table.detail {
    border: none;
    background: #ffffff;
}

td.detail {
    background: #f5f7fe;
    padding-left: 7px;
}

/* Tlačítka */
.search_button,
button,
input[type="submit"] {
    background-color: #70b62c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search_button:hover,
button:hover,
input[type="submit"]:hover {
    background-color: #3a70a8;
}