.dropdown {
    position: absolute;
    display: none;
    /*background-color: rgb(74, 74, 74);*/
    box-sizing: border-box;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 9999px;
    z-index: 100;
    padding: 2px;
    /*user-select: none;*/
    gap: 8px;
    box-sizing: border-box;
    border: 1px solid rgb(100, 100, 100);
    background-color: rgb(46, 46, 46);
}

.dropdown-horizontal .dropdown-small {
    height: 28px;
    max-height: 28px;
    width: auto;
}

.dropdown-horizontal .dropdown-medium {
    height: 40px;
    max-height: 40px;
    width: auto;
}

.dropdown-horizontal {
    flex-direction: row;
}

.dropdown-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 98;
}
