﻿

.options {
    position: absolute;
    top: 0px;
    left: 0;
    background: white;
    width: 100%;
    padding: 0;
}

.options-container {
    height: 310px;
    overflow: auto;
    border: 1px solid #000000;
    position: absolute;
    margin-right: -5px;
    margin-top: 6px;
    width: 89%;
    z-index: 9999;
    background-color: #ffffff;
    cursor: pointer;
    color: #000000 !important;
}

.option {
    display: block;
    padding: 8px;
}

    .option .option-text {
        padding: 0.25rem 0.5rem;
    }

    .option:hover {
        background: #1E90FF;
        color: #fff;
    }

    .option.disabled {
        background-color: lightgrey;
        cursor: not-allowed;
    }

        .option.disabled:hover {
            background: lightgrey;
            color: var(--bs-body);
        }

