/* Moderní vzhled search baru a selectu */
.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto; /* Centrum tabulky */
    gap: 2%;  /* Menší mezeru mezi filtry */
    width: 90%; /* Zmenšení šířky pro větší prostor */
    margin-bottom: 30px;
    padding: 20px;
    background-color: #2c2c2c; /* Temnější pozadí pro zvýraznění filtrů */
    border-radius: 10px; /* Zaoblené rohy pro moderní vzhled */
}

/* Styl pro input a select */
.filters input[type="text"],
.filters select {
    padding: 12px 18px;
    font-size: 16px;
    border: 1px solid #444;
    background-color: #555;  /* Tmavší pozadí pro inputy */
    color: white;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 45%; /* Zajistí rovnoměrné rozdělení prostoru */
    margin-left: 15%; /* Menší levý margin pro širší tabulku */
}

/* Změny při focusu na input/select */
.filters input[type="text"]:focus,
.filters select:focus {
    border-color: #4a90e2; /* Modrá barva při aktivaci */
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.6); /* Jemný modrý stín pro zvýraznění */
}

/* Moderní tabulka */
.report-table {
    width: 90%;
    margin: 0 auto; /* Centrum tabulky */
    border-collapse: collapse;
    color: white;
    margin-bottom: 30px;
    background-color: #333; /* Tmavší pozadí pro tabulku */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Stín pro lepší vzhled */
}

/* Styl pro buňky tabulky */
.report-table th,
.report-table td {
    padding: 14px 20px; /* Větší padding pro větší prostor */
    text-align: left;
    border-bottom: 1px solid #555; /* Tmavší oddělující čáry */
    text-align: center;
}

/* Styl pro hlavičku tabulky */
.report-table th {
    background-color: #444;
    font-weight: bold;
    font-size: 16px;
    color: white;
    text-align: center;
}

/* Efekt při najetí myší na řádek tabulky */
.report-table tr:hover {
    background-color: #3c3c3d;
    cursor: pointer; /* Změna kurzoru pro lepší interaktivitu */
}

/* Styl pro tlačítko Detail */
.report-table a.detail-button {
    display: inline-block;
    padding: 8px 14px;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Efekt při najetí myší na tlačítko */
.report-table a.detail-button:hover {
    background-color: #357ab8;
    transform: scale(1.05); /* Zvětšení tlačítka při najetí myší */
}
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.pagination-controls button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

.pagination-controls button:hover:not(:disabled) {
    background-color: #45a049;
    transform: scale(1.05);
}

.pagination-controls button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.pagination-controls select {
    padding: 6px 12px;
    border-radius: 25px;
    border: 1px solid #ccc;
    outline: none;
    font-weight: bold;
    transition: border-color 0.3s ease;
}

.pagination-controls select:hover {
    border-color: #4CAF50;
}

#pageInfo {
    font-size: 1rem;
    font-weight: bold;
    margin: 0 10px;
}
