form.rtb-form label {
    font-size: 18px;
    color: #353535;
}
button.table-reservation-btn {
    width: 100%;
    border: 1px solid #353535;
    border-radius: 10px;
    margin-top: 50px;
    color:#353535;
}
.rtb-form {
    max-width: 600px;
    margin: 0px auto;
    padding: 25px;
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.rtb-form input[type="text"],
.rtb-form input[type="email"],
.rtb-form input[type="number"],
.rtb-form input[type="date"],
.rtb-form input[type="time"],
.rtb-form input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  margin: 8px 0 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: border-color 0.3s ease;
  font-size: 14px;
  color: #7e7e7e !important;
}

.rtb-form input:focus {
  border-color: #0073aa;
  outline: none;
}


.rtb-form .rtb-table-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.rtb-form .table {
    background: #fff;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rtb-form .table.selected {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

















.rtb-table-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.rtb-table-layout .table {
    border: 2px solid #ccc;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    min-width: 120px;
    transition: all 0.2s ease-in-out;
    background-color: #f9f9f9;
}

.rtb-table-layout .table.selected {
    border-color: rgba(149, 128, 78, 1);
    background-color: rgba(149, 128, 78, 1);
    box-shadow: 0 0 10px rgba(149, 128, 78, 1);
    font-weight: bold;
}
#menu_choice {
    padding: 10px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    border-radius: 6px;
}


.form-step {
  display: none;
  background: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.form-step.active {
  display: block;
}
.rtb-booking-form button {
  margin-top: 15px;
  padding: 10px 15px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 5px;
}
.rtb-booking-form h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.privacy-policy-wrapper {
  margin-top: 20px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
}

.privacy-checkbox input[type="checkbox"] {
  margin-top: 4px;
  margin-right: 10px;
}

.privacy-checkbox .checkbox-text {
  line-height: 1.5;
}

.privacy-checkbox a {
  color: #0073aa;
  text-decoration: underline;
}
.privacy-checkbox .checkbox-text {
    line-height: 1.4;
    font-size: 12px;
}