body {
  font-family: 'Inter',sans-serif;
}

.booking-table {
  background: transparent;
  overflow: hidden;
}
.booking-table thead th {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 14px 20px;
  white-space: nowrap;
}
.booking-table tbody td {
  font-size: 14px;
  color: #555;
  padding: 10px 20px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.booking-table tbody tr:nth-child(even) td {
  background: rgba(0,0,0,0.02);
}
.booking-table tbody tr:last-child td {
  border-bottom: none;
}
.btn-book {
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.btn-book:hover {
  background: #333;
  color: #fff;
}

/* Mobile: stack rows as labeled cards */
@media (max-width: 576px) {
  .booking-table thead { display: none; }
  .booking-table tbody tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  .booking-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    font-size: 13px;
  }
  .booking-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #111;
    font-size: 12px;
    margin-right: 8px;
  }
  .booking-table tbody td.td-action {
    justify-content: flex-end;
    border-bottom: none;
  }
  .booking-table tbody tr:nth-child(even) td {
    background: transparent;
  }
  .booking-table tbody td.td-action::before { content: none; }
}
