/* Dropdown container */
.stm-autocomplete-dropdown {
    position: absolute;
    top: 80px;
    left: -350px;
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

/* Dropdown item */
.stm-autocomplete-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border-top: 1px solid rgb(201, 201, 201);
}

/* Hover effect */
.stm-autocomplete-item:hover {
    background-color: #f0f0f0;
}

/* Active item (keyboard navigation support) */
.stm-autocomplete-item.active {
    background-color: #f5f5f5;
    font-weight: bold;
}
