.selection {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 200px;
    border: 1px solid #cccccc;
    overflow-y: auto;
    z-index: 999;
    background-color: #fff;
}

.item {
    padding: 2px 6px;
    cursor: pointer;
}

.highlighted {
    color: white;
    background-color: #4095bf;
}

.header {
    background-color: #eeeeee;
    color: #454545;
    font-weight: bold;
}