.taxi-table-container {
  overflow-x: auto;
  margin-bottom: 20px;
}

.taxi-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  text-align: center;
}

.taxi-table th,
.taxi-table td {
  padding: 12px;
  border: 1px solid #ddd;
}

.taxi-table th {
  background: #f8a815;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

.taxi-table th:nth-child(1)::before { content: '🚖 '; }
.taxi-table th:nth-child(2)::before { content: '💺 '; }
.taxi-table th:nth-child(3)::before { content: '💰 '; }
.taxi-table th:nth-child(4)::before { content: '🧭 '; }
.taxi-table th:nth-child(5)::before { content: '💰 '; }

.taxi-table tbody tr:nth-child(odd) {
  background: #fff;
}
.taxi-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.taxi-table caption {
  caption-side: top;
  font-size: 1.2em;
  font-weight: 600;
  padding-bottom: 10px;
  color: #333;
}

