/* Font general + fundal light GitHub-style */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f6f8fa;
  color: #24292f;
  line-height: 1.6;
  font-size: 16px;
}

/* Container form */
.booking-form-container {
  max-width: 640px;
  margin: 3rem auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(27, 31, 35, 0.05);
  border: 1px solid #d0d7de;
}

/* Etichete */
.booking-form-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #24292f;
}

/* Inputuri */
.booking-form-container input[type="text"],
.booking-form-container input[type="email"],
.booking-form-container input[type="tel"],
.booking-form-container input[type="date"],
.booking-form-container select,
.booking-form-container textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  font-size: 14px;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
  margin-bottom: 1.25rem;
}

.booking-form-container input:focus,
.booking-form-container textarea:focus,
.booking-form-container select:focus {
  border-color: #0969da;
  outline: none;
  box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.15);
}

/* Checkbox */
.booking-form-container input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: #0969da;
}

/* GDPR label mic și discret */
.booking-form-container .gdpr-label {
  font-size: 0.875rem;
  color: #57606a;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.booking-form-container .gdpr-label a {
  color: #0969da;
  text-decoration: underline;
}

/* Calendar */
.calendar-widget {
  border: 1px solid #d0d7de;
  padding: 1rem;
  border-radius: 6px;
  background-color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Buton submit */
.booking-form-container button[type="submit"] {
  background-color: #2da44e;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  width: 100%;
}

.booking-form-container button[type="submit"]:hover:not(:disabled) {
  background-color: #218639;
  transform: translateY(-1px);
}

.booking-form-container button[type="submit"]:disabled {
  background-color: #94d3a2;
  cursor: not-allowed;
  opacity: 0.7;
}
