.vm-container {
    width: 400px;
    overflow: hidden;
    border: 1px solid #ccc;
    position: relative;
    background: transparent; /* blend with background */
}

.vm-list {
    position: absolute; /* needed for transform animation */
    top: 0;
    width: 100%;
}

.vm-list div {
    height: 100%;
}

.vm-item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    transition: background 0.2s;
	text-decoration: underline;
    color: #0073aa;
}

.vm-item-inner:hover {
	color: #005177;
    background: rgba(255,255,255,0.1); /* optional hover effect */
}

/* Tooltip */
.vm-tooltip {
    position: absolute;
    display: none;
    background: #222;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 9999;
 /*   white-space: nowrap; */
}