.elementor-138309 .elementor-element.elementor-element-c3b0c84{--display:flex;}/* Start custom CSS for html, class: .elementor-element-11eb0de *//* ── Master Liveaboards – Vessel Search Widget CSS ── */

.ml-search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 15px;
  box-shadow: 0px 4px 13px 6px rgba(0, 0, 0, 0.10);
  padding: 22px;
}

.ml-field {
  flex: 1 1 0;
  min-width: 160px;
  position: relative;
}

.ml-field select {
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 0 40px 0 16px;
  border: none;
  border-radius: 8px;
  background: #ffffff;
  color: #666666;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.2s;
}

.ml-field select:focus {
  box-shadow: 0 0 0 2px rgba(212, 153, 0, 0.45);
}

/* Dropdown caret arrow */
.ml-field::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #001436;
  pointer-events: none;
}

.ml-btn {
  flex: 0 0 25%;
  min-width: 160px;
}

.ml-btn button {
  width: 100%;
  height: 100%;
  min-height: 48px;
  border: none;
  border-radius: 8px;
  background: #D49900;
  color: #ffffff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.ml-btn button:hover  { background: #b88200; }
.ml-btn button:active { transform: scale(0.98); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .ml-search-bar { gap: 14px; }
  .ml-field {
    min-width: calc(50% - 10px);
    flex: 1 1 calc(50% - 10px);
  }
  .ml-btn { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .ml-field { flex: 1 1 100%; min-width: 100%; }
  .ml-btn   { flex: 1 1 100%; }
}/* End custom CSS */