.listpoints {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none; /* Изначально скрыт */
}

.listpoints-item {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.listpoints-item:last-child {
    border-bottom: none;
}

.listpoints-item:hover {
    background-color: #f5f5f5;
}

/* Позиционирование относительно input */
.listivo-input-v2 {
    position: relative;
}

.listpoints {
    top: 100%;
    left: 0;
}