<section class=”travel-calendar”>
<h2>Kalendarz wyjazdów</h2>
<table>
<thead>
<tr>
<th>Data</th>
<th>Kierunek</th>
<th>Liczba miejsc</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<!– PRZYKŁADOWY WIERSZ –>
<tr class=”confirmed”>
<td>2026-02-15</td>
<td>Barcelona, Hiszpania</td>
<td>12</td>
<td>Potwierdzona</td>
</tr>
<tr class=”pending”>
<td>2026-03-01</td>
<td>Rzym, Włochy</td>
<td>8</td>
<td>Niepotwierdzona</td>
</tr>
<!– DODAWAJ KOLEJNE WIERSZE PONIŻEJ –>
</tbody>
</table>
</section>