body {
   font-family: Arial, sans-serif;
   background-color: #f3f3f3;
   padding: 30px;
}
h2 {
    text-align: center;
}
form {
    background-color: white;
    margin: 0 auto;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}
input[type="text"],
input[type="url"],
input[type="file"],
textarea,
select {
    width: 90%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}
.form-section {
 
    border-top: 1px solid #ddd;
    padding-bottom: 10px;
   
    
}
button {
    margin-top: 25px;
    padding: 12px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}
.image-preview {
    display: block;
    margin-bottom: 8px;
    height: 100px;
}
.custom-file-input {
    display: inline-block;
    margin-bottom: 15px;
}
.container-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}
/* .inner-container {
    flex: 1 1 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
    box-sizing: border-box;
} */
/* By default: 3 in a row (for other pages) */
.inner-container {
    flex: 1 1 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
}

/* ✅ For this page only: 2 in a row */
.travel-homepage-form .inner-container {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

/* Input container styling */
.input-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  font-family: 'Segoe UI', sans-serif;
}

/* Search input box */
#searchInput_add, #searchInput_edit {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

#searchInput_add:focus, #searchInput_edit:focus {
  border-color: #0072ff;
  box-shadow: 0 0 0 2px rgba(0, 114, 255, 0.15);
}

/* Dropdown container */
.destination-search-container {
  position: relative;
}

/* Dropdown list */
.search_destination_lead {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: white;
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none; /* hidden by default */
}

/* Each dropdown option */
.search_destination_lead a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.search_destination_lead a:hover {
  background-color: #f0f4ff;
}

/* Selected via keyboard arrow key */
.search_destination_lead a.active {
  background-color: #0072ff;
  color: white;
}
.search_destination_lead::-webkit-scrollbar {
  width: 6px;
}
.search_destination_lead::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}
