/* Základní styly */
body {
    background-color: #12121b;
    color: #dcdcdc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    padding: 20px;
}

/* Header s logem a tlačítkem */
.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    max-height: 50px;
    width: auto;
    cursor: pointer;
}

.download-link {
    background: #007bff;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

.download-link:hover {
    background: #0056b3;
}

/* Vyhledávací pole */
#searchInput {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1e1e1d;
    color: #dcdcdc;
}

/* Tabulka */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
    cursor: pointer;
}

th {
    background-color: #1e1e1d;
}

th.sortable:hover {
    background-color: #1c2e2f;
}

/* Miniatury obrázků */
img.thumbnail {
    transition: transform 0.2s ease-in-out;
    max-width: 100px;
    max-height: 100px;
}

img.thumbnail:hover {
    transform: scale(2) translateX(25%);
    z-index: 1000;
    position: relative;
}

/* Stránkování */
.pagination {
    margin-top: 10px;
    text-align: center;
}

.pagination button {
    padding: 5px 10px;
    margin: 2px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 3px;
}

.pagination button:hover {
    background-color: #0056b3;
}

/* Formulář pro vyhledávání */
form {
    margin-top: 20px;
}

form label {
    font-weight: bold;
    margin-right: 10px;
}

form input[type="text"] {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #333;
    border-radius: 3px;
    background-color: #1e1e1d;
    color: #dcdcdc;
}

form button {
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}

form button:hover {
    background-color: #0056b3;
}

#results {
    margin-top: 20px;
}

/* Tlačítko zpět nahoru */
#backToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #007BFF;
    color: white;
    border: none;
    outline: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s;
}

#backToTop:hover {
    background-color: #0056b3;
}

footer{                                                                                                          
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
    margin-top: 20px;
}

footer a {
    color: green;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

