/**
 * Destination Results Z-Index Fix
 * Ensures destination dropdown appears above date picker
 * + Input cursor positioning fix
 */

/* Increase z-index for destination results to appear above date picker */
.destination-results {
    z-index: 11000 !important;
}

.destination-results.active {
    z-index: 11000 !important;
}

/* Ensure search box has proper stacking context */
.search-box {
    position: relative;
    z-index: 11001;
}

/* Make sure destination dropdown is always on top when active */
.search-box-wrap .destination-results.active {
    z-index: 11002 !important;
}

/* Fix input cursor positioning - ensure cursor appears after icon */
.search-box input {
    padding-left: 60px !important;
}

/* Adjust icon position to be properly aligned with text cursor */
.search-box img.input-icon {
    left: 20px !important;
    width: 32px !important;
}