.container-f {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.full-width {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

input,
select {
    width: auto;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 150px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    background: #007bff;
    color: white;
    border: none;
    margin-top: 5px;
    margin-bottom: 5px;;
    justify-self: right;
}

button:hover {
    background: #0056b3;
}

.traveler-dropdown {
    position: relative;
}

.dropdown-btn {
    background: white;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    text-align: left;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
}

.small-btn {
    width: 25px;
    height: 25px;
    padding: 2px;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px; /* Add small spacing */
}

.city-input {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

/* Checkboxes */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0056b3; 
    cursor: pointer;
    margin-bottom: 10px;
}


textarea {
    width: auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    resize: vertical; /* Allows vertical resizing */
}
