/* afshi-booking.css - Design complet du formulaire */
.afshi-booking-wrapper {
  max-width: 800px;
  margin: 20px auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.afshi-booking-controls {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}

.afshi-booking-controls label {
  flex: 1;
  font-weight: bold;
  display: block;
}

.afshi-booking-controls input,
.afshi-booking-controls select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.afshi-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.afshi-form-grid label {
  font-weight: 600;
  font-size: 14px;
}

.afshi-form-grid input,
.afshi-form-grid select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 4px;
}

.full-width {
  grid-column: span 2;
}

.afshi-message {
  margin: 15px 0;
  padding: 15px;
  border-radius: 4px;
  font-weight: 500;
}

.afshi-message.info {
  background: #e7f3ff;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.afshi-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.afshi-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#afshi-submit {
grid-column: span 2;
background: #2271b1;
color: white;
border: none;
padding: 15px;
font-size: 16px;
font-weight: bold;
border-radius: 4px;
cursor: pointer;
margin-top: 20px;
transition: background 0.2s;
}

#afshi-submit:hover {
background: #135e96;
}

#afshi-submit:disabled {
background: #ccc;
cursor: not-allowed;
}

/* Responsive */
@media (max-width: 600px) {
  .afshi-form-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
  .afshi-booking-controls {
    flex-direction: column;
  }
}
