#audioMenuButton
{
    transform: translate(30%);
}

.menu-container
{
    position: absolute;
    background: var(--bg);
    box-shadow: 0 2px 5px 2px var(--menuShadowColor);
    
    border-radius: 5px;

    visibility: hidden;
    z-index: 1000;

    display: flex;
    flex-direction: column;

    gap: 1em;
}

.menu-container > *
{
    font-family: 'NotoNaskhArabic';
}

/* .menu
{
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 5px 0;
    border-radius: 5px;
    min-width: 150px;
    display: none;
    z-index: 100;
} */

.actionRowLayout
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 5px;
    padding: 2px 5px;
    border-radius: 5px;

    cursor: pointer;

    /* border: 1px solid green; */
}

.rowLabel
{
    flex-grow: 5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* border: 1px solid blue; */
}

.rowIcon
{
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    /* border: 1px solid red; */
}

.rowIcon:hover
{
    background-color: var(--hoverBg);
}