/* Základní styl pro tělo stránky */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    padding: 20px;
}

/* Kontejner pro obsah */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hlavička stránky */
h1 {
    text-align: center;
    color: #343a40;
    margin-bottom: 30px;
}

/* Sekce pro filtrování */
.filter-section {
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Layout pro filtry (dva sloupce) */
.filter-column {
    padding-right: 20px;
}

/* Styly pro jednotlivé filtrovací inputy */
input.form-control {
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Sekce pro filtr okresů */
#districtFilters {
    margin-top: 10px;
}

.form-check-inline {
    margin-right: 15px;
}

/* Tlačítka a checkboxy */
.form-check-input {
    margin-top: 5px;
}

/* Tabulka s vozidly */
table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

table th.sortable:hover {
    background-color: #0056b3;
}

table td {
    background-color: #ffffff;
}

/* Indikátor řazení */
th.sort-asc::after {
    content: " ↑";
}

th.sort-desc::after {
    content: " ↓";
}

/* Odkazy v sekci "Powered by" */
.powered-by {
  font-size: 1rem;
  text-align: center;
    margin-top: 10px;
}

.powered-by a {
    text-decoration: none;
}

.powered-by .logo {
    max-width: 180px;
    margin-top: 10px;
}

.disclaimer {
    font-size: 0.8rem;
  	margin-top: 20px;
    color: #6c757d;
}

/* Sekce pro chybové hlášky a prázdné tabulky */
td[colspan="9"] {
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    color: #ff0000;
}

/* Různé box-shadow a efekt pro výchozí vzhled */
.form-control, .form-check-input {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Pozadí pro celou stránku */
body {
    background-color: #f1f3f5;
}