* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f5f5f5;
  color: #333;
}

body.booking-page,
body.document-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f5f5f5;
  color: #333;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

body.has-site-header {
  min-height: 100vh;
  display: block;
  padding: 0;
}

.page-shell {
  padding: 40px 20px;
}

.page-shell--centered {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-shell--document {
  padding-bottom: 56px;
}

.form-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  max-width: 480px;
  width: 100%;
  padding: 32px;
}

h1 {
  font-size: 24px;
  margin-bottom: 4px;
}

.subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

input:focus,
select:focus {
  outline: none;
  border-color: #2e7d32;
}

.date-time-row {
  display: flex;
  gap: 12px;
}

.date-time-row > div {
  flex: 1;
}

.consent-group {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 14px;
  margin: 20px 0;
}

.consent-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

.consent-group input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: #2e7d32;
}

.btn-book {
  width: 100%;
  padding: 14px;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-book:hover {
  background: #256428;
}

.btn-book:disabled {
  background: #aaa;
  cursor: not-allowed;
}

.success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-message h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.success-message p {
  color: #666;
  font-size: 14px;
}
