/* Start custom CSS for html, class: .elementor-element-bc80333 */<style>
  .booking-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 12px;
    font-family: 'Noto Sans TC', sans-serif;
  }

  .booking-form label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #333;
    flex: 1 1 0;
    min-width: 160px;
    padding-bottom: 4px;     /* ✅ 關鍵修正 */
    line-height: 1.6;        /* ✅ 防止文字擠壓 */
  }

  .booking-form input,
  .booking-form select {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    min-width: 180px;
  }

  .booking-form select {
    height: 42px;             /* ✅ 關鍵：強制 select 顯示完整 */
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .booking-form button {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #1A4D2E;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    min-width: 120px;
    height: 42px;
    align-self: flex-end;
  }

  .booking-form button:hover {
    background-color: #135138;
  }

  @media (max-width: 768px) {
    .booking-form {
      flex-direction: column;
      align-items: stretch;
    }
  }
</style>/* End custom CSS */