
#sabre-hotel-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#sabre-hotel-form input,
#sabre-hotel-form button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#sabre-hotel-form button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

#sabre-hotel-form button:hover {
    background-color: #0056b3;
}

#sabre-suggestions {
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    z-index: 999;
    position: absolute;
}

#sabre-suggestions li {
    padding: 10px;
    cursor: pointer;
}

#sabre-suggestions li:hover {
    background-color: #f0f0f0;
}
