/*Basic styling for CoC selector, TODO: @jelmerholtes refactor this to sccs */
.coc_suggestion_results {
    position: relative;
}

.coc_suggestion_container {
    position: absolute;
    display: flex;
    flex-direction: column;
    margin-top: -15px;
    border-radius: 3px;
    box-shadow: 0px 2px 2px lightgrey;
    width: 100%;
    background: white;
}

.coc_suggestion_results_suggestion {
    background: none;
    border: none;
    text-align: left;
    padding: 12px 10px;
    color: black !important;
}

.coc_suggestion_results_suggestion:hover {
    background-color: #050534;
    cursor: pointer;
    color: white !important;
}