/* Search Engine Form Styles for Flydreamz */

.outer-search {
  background: #ffffff;
  border-radius: 12px;
  margin-top: 15px;
  padding: 12px 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lbl {
  cursor: pointer;
  width: 100%;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  padding: 4px 12px;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  box-sizing: border-box;
}

.lbl:hover,
.lbl:focus-within {
  background: #ffffff;
  border-color: #c53d3d;
  box-shadow: 0 0 0 3px rgba(197, 61, 61, 0.1);
}

.lbl span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  display: block;
  padding-left: 0;
  line-height: 1;
  margin-bottom: 2px;
}

.search-input {
  padding: 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}

.search-input:focus-visible,
.search-input:focus {
  outline: 0;
  border: 0;
  box-shadow: none;
}

.search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
  font-size: 13px;
}

.search-flights {
  padding: 0 15px;
  background: #c53d3d;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  width: 100%;
  height: 48px;
  min-height: 48px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}

.search-flights:hover {
  background: #a53030;
  transform: translateY(-1px);
}

/* Mobile & Tablet Adjustments */
@media (max-width: 991.98px) {
  .outer-search {
    padding: 15px 12px;
  }
  .search-flights {
    margin-top: 5px;
  }
}
