/* --- PŮVODNÍ STYLY --- */
.filter-box { background-color: #1c1c1e; padding: 20px; border-radius: 8px; border: 1px solid #3a3a3c; margin-bottom: 30px; }
.filter-form { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; }
.filter-form input, .filter-form select { padding: 10px; border: 1px solid #555; background-color: #3a3a3c; color: #f5f5f5; border-radius: 4px; font-size: 1em; flex-grow: 1; }
.filter-form button, .filter-form a { padding: 10px 20px; border-radius: 4px; font-size: 1em; font-weight: bold; text-decoration: none; cursor: pointer; text-align: center; border: none; }
.btn-primary { background-color: #4a90e2; color: #fff; transition: background-color 0.3s; }
.btn-primary:hover { background-color: #357ABD; }
.btn-secondary { background-color: #555; color: #fff; transition: background-color 0.3s; }
.btn-secondary:hover { background-color: #777; }
.table-container { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background-color: #2a2a2e; border-radius: 8px; overflow: hidden; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid #3a3a3c; }
thead { background-color: #333336; }
th { font-weight: 700; }
tbody tr:hover { background-color: #333336; }
tfoot { background-color: #1c1c1e; border-top: 2px solid #3a3a3c; }
.no-results { text-align: center; padding: 30px; color: #a0a0a0; }
.prijem { color: #2ecc71; font-weight: 700; }
.vydaj { color: #e74c3c; font-weight: 700; }
td.account-cell { color: #a0a0a0; font-size: 0.9em; }

/* --- NOVÁ SEKCE PRO MOBILNÍ TELEFONY --- */
@media (max-width: 600px) {
    .filter-form { flex-direction: column; align-items: stretch; }
    th, td { padding: 10px; font-size: 0.9em; } /* Menší padding a písmo v tabulce */
}