/* Postal Code Autocomplete Dropdown — city_dropdown v2 */

.pc-autocomplete-list {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    list-style: none;
    margin: 2px 0 0 0;
    padding: 0;
    max-height: 260px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: inherit;
    font-size: 14px;
}

.pc-autocomplete-list li {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333333;
    line-height: 1.4;
}

.pc-autocomplete-list li:last-child {
    border-bottom: none;
}

.pc-autocomplete-list li:hover,
.pc-autocomplete-list li.pc-active {
    background-color: #f0f5ff;
    color: #1a1a1a;
}

.pc-autocomplete-list .pc-postcode {
    color: #888888;
    font-size: 12px;
    margin-left: 6px;
    font-weight: normal;
}
