/* Turkistan Booking Form - Public Styles */

.tbf-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

.tbf-form-group {
  margin-bottom: 20px;
}

.tbf-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.tbf-form-group label .req {
  color: #e74c3c;
}

.tbf-input,
.tbf-select,
.tbf-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.tbf-input:focus,
.tbf-select:focus,
.tbf-textarea:focus {
  border-color: #3498db;
  outline: none;
}

.tbf-guest-selector {
  display: flex;
  gap: 10px;
}

.tbf-submit-button {
  width: 100%;
  padding: 15px;
  background-color: #2ecc71;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tbf-submit-button:hover {
  background-color: #27ae60;
}

.tbf-pricing-summary {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}

.tbf-line-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 16px;
}

.tbf-line-item:last-child {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

@media (max-width: 600px) {
  .tbf-container {
    padding: 15px;
  }
  .tbf-guest-selector {
    flex-direction: column;
  }
}
