
/* Google Places Autocomplete Dropdown Styling */

.pac-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    transition: background-color 0.2s ease;
}


.pac-item:hover {
    background-color: #f8f9fa;
}

.pac-item-selected {
    background-color: #ebf6f0;
}

.pac-item-query {
    font-weight: 600;
    color: #333333;
}

.pac-item-query:hover {
    color: #109647;
}

.pac-matched {
    font-weight: 600;
    color: #109647;
}

.pac-icon {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pac-item {
        font-size: 16px;
    }
}