/* Google Places Autocomplete styles */
.pac-container {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    z-index: 100000;
}

.pac-item {
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    border-top: 1px solid #e9ecef;
}

.pac-item:first-child {
    border-top: none;
}

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

.pac-item-query {
    font-size: 14px;
    color: #212529;
}

.pac-matched {
    font-weight: bold;
}

/* Style for the address input when active */
.form-control.address-active {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}