.dbod2-menu-input {
    display: flex;
    flex-direction: column;
    width: 200px;
    background-color: var(--epf-sidebar-bg);
    justify-content: start;
    padding: 15px;
    overflow-y: auto;
}

.dbod2-menu-input a {
    color: inherit;
    text-decoration: inherit;
    cursor: inherit;

    display: inherit;
    flex-direction: inherit;
    background-color: inherit;
    justify-content: inherit;
    border-radius: inherit;
}

.dbod2-menu-value {
    background-color: transparent;
    border: none;
    padding: 10px;
    color: var(--bs-white);
    display: flex;
    align-items: center;
    position: relative;
    gap: 5px;
    cursor: pointer;
    border-radius: 4px;
}

.dbod2-menu-value-end {
    justify-self: end;
}

.dbod2-menu-value:not(:active):hover,
.dbod2-menu-value:focus {
    background-color: var(--epf-sidebar-hover);
}

.dbod2-menu-value:focus,
.dbod2-menu-value:active {
    background-color: var(--epf-sidebar-active);
    outline: none;
}

.dbod2-menu-value::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -10px;
    width: 5px;
    height: 80%;
    background-color: var(--bs-primary);
    border-radius: 5px;
    opacity: 0;
}

.dbod2-menu-value:focus::before,
.dbod2-menu-value:active::before {
    opacity: 1;
}

.dbod2-menu-value svg {
    width: 15px
}

.dbod2-menu-value.active::before {
    opacity: 1;
}
