.container {
    width: 500px;

    .custom-dropdown {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        border: 1px solid grey;

        .custom-groups {
            overflow: auto;
            max-height: 300px;
        }

        .custom-element {
            width: 100%;
            text-align: center;
            background-color: darkgray;
            border-block-start: 1px solid grey;
        }
    }

    .custom-input {
        width: 100%;
        box-sizing: border-box;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border: 1px solid grey;
        padding-left: 5px;
    }

    .chevron-icon {
        position: absolute;
        top: calc(50% + 2px);
        transform: translateY(-50%);
        right: 5px;
    }

    .active-option {
        background-color: #5bc89c4a;
    }
}

.scrollable-container {
    overflow: auto;
    height: 100px;
}
