/* Target the select element */
#betterez-form select {
    background-image: url('/wp-content/uploads/2025/11/noun-map-marker-67162.svg'); /* Replace with your icon URL */
    background-repeat: no-repeat;
    background-position: right 12px center; /* Position icon inside the select */
    background-size: 20px; /* Size of the icon */
    padding-right: 36px; /* Add space so text doesn't overlap the icon */
    appearance: none; /* Remove default browser arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Optional: Add a custom arrow icon too */
.select-with-icon {
    position: relative;
}

.select-with-icon::after {
    content: '';
    background: url('https://example.com/arrow.svg') no-repeat center;
    background-size: 12px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    pointer-events: none;
}

#trip-date{
    width: auto;
}

#betterez-form .kb-adv-form-success{
    display: none;
}
@media (min-width: 768px) {
    #cccccbetterez-form{
        margin-bottom: -30px;
    }
}

#trip-results .kt-inside-inner-col {
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#trip-results.show-results .kt-inside-inner-col {
    display: block;
    opacity: 1; /* Fade in */
}

#trip-results.loading .kt-inside-inner-col,
#trip-results.error .kt-inside-inner-col {
    display: none;
    opacity: 0;
}

