/* Automatyczne przewijanie za szerokich tabel na smartfonach */
@media (max-width: 768px) {
    table {
        display: block;
        width: 100% !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
/* Opcjonalnie: Ładne formatowanie podstawowe dla wszystkich tabel */
table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}
table th, table td {
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
}
