.menu-dir-post {
    position: absolute;
    margin-bottom: 55px;
    display: inline-block;
    background: var(--white);
    padding: 6px 0 6px 0;
    border: 1px solid var(--grey-v);
    border-radius: 6px;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 8%);
}
            /* Стили для всплывающего блока */
            .popup {
                display: none; /* По умолчанию скрыт */
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 50%;
                height: 50%;
                border: 0px;
                z-index: 1000; /* Чтобы блок был поверх других */
                overflow: auto; /* Для прокрутки, если контента много */
                padding: 20px;
            }
            
.dropdown-content {
    position: absolute;
    margin-bottom: 55px;
display:none;
    background: var(--white);
    padding: 6px 0 6px 0;
    border: 1px solid var(--grey-v);
    border-radius: 6px;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 8%);
}