#pb-check-form,
#pb-reservation-form {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-family: Arial, sans-serif;
}

#pb-check-form label,
#pb-reservation-form label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
}

#pb-check-form input,
#pb-reservation-form input {
  
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 14px;
}

#pb-check-form button,
#pb-reservation-form button {
  background-color: #2d89ef;
  color: white;
  border: none;
  padding: 10px;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
}

#pb-check-form button:hover,
#pb-reservation-form button:hover {
  background-color: #1b5fc4;
}



.pb-booking-form {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-family: Arial, sans-serif;
}

.pb-form-group {
  margin-bottom: 15px;
}

.pb-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.pb-form-group input {
  width: 80%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.pb-submit-btn {
  background-color: #2d89ef;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.pb-submit-btn:hover {
  background-color: #1b5fc4;
}

.pb-price-info {
  background-color: #fef9e7;
  border: 2px solid #f1c40f;
  border-radius: 6px;
  padding: 15px 20px;
  margin: 15px 0;
  font-family: 'Segoe UI', sans-serif;
}

.pb-price-value {
  font-size: 22px;
  font-weight: bold;
  color: #e67e22;
  margin-bottom: 5px;
}

.pb-price-details {
  font-size: 15px;
  color: #333;
}

#pb-check-form {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 12px;
  color: #666;
  font-style: italic;
  text-align: center;
}

.pb-calendar-table td:hover::after {
    white-space: pre-line; /* afișează \n ca newline */
}

.pb-policies-link {
  color: #0073e6; /* albastru */
  font-weight: bold; /* opțional, să iasă mai în evidență */
  text-decoration: underline; /* opțional */
}

.pb-policies-link:hover {
  color: #005bb5; /* o nuanță mai închisă la hover */
}

#pb-result {
    margin-top: 1.5rem;
    display: flex;              /* activează flexbox */
    justify-content: center;    /* centrează pe orizontală */
    align-items: center;        /* centrează pe verticală (dacă are înălțime definită) */
    font-size: 1rem;
    color: var(--heading_color, #222);
    flex-direction: row;
    text-align: center;         /* pentru text multiline */
}

