/* Google Places Autocomplete dropdown fixes */

/* Ensure autocomplete dropdown is above other content */
.pac-container {
    z-index: 9999 !important;
}

/* Ensure prediction items are visible and clickable */
.pac-item {
    cursor: pointer;
    padding: 10px;
}

/* Highlight on hover */
.pac-item:hover {
    background-color: #f0f0f0;
}

/* Address input styling to work well with autocomplete */
input.apple-input:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Prevent autocomplete dropdown from being cut off */
.apple-card {
    overflow: visible;
}

.apple-section {
    overflow: visible;
}

/* Ensure modal/card containers don't clip the dropdown */
.apple-actions {
    overflow: visible;
}

/* Make sure the mileage calculator doesn't hide the dropdown */
.dropdown-content {
    overflow: visible;
}
