/* ReachShip Custom Google Autocomplete Dropdown Styling */
.rs-autocomplete-dropdown {
    position: absolute;
    background-color: #ffffff;
    border: 1px solid #d3ced2;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    overflow-y: auto;
    z-index: 999999;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    margin-top: 2px;
}

/* Scrollbar styling */
.rs-autocomplete-dropdown::-webkit-scrollbar {
    width: 6px;
}
.rs-autocomplete-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.rs-autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}
.rs-autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Flipped version styles (positioned above input) */
.rs-autocomplete-dropdown.rs-flipped {
    margin-top: 0;
    margin-bottom: 2px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.rs-autocomplete-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rs-autocomplete-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f3f3f3;
    line-height: 1.4;
    transition: background-color 0.15s ease;
    display: flex;
    align-items: center;
    color: #333333;
}

.rs-autocomplete-item:last-child {
    border-bottom: none;
}

/* Hover and Keyboard Arrow Focus states */
.rs-autocomplete-item.rs-active,
.rs-autocomplete-item:hover {
    background-color: #e9e9e9;
    color: #111111;
}

.rs-main-text {
    font-weight: 600;
    color: #1a1a1a;
}

.rs-secondary-text {
    color: #666666;
    margin-left: 2px;
    font-size: 12px;
}
