.vmenu-navigation {
    align-items: stretch;
    border-right: 1px solid rgba(118,118,118,0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 275px;
    width: 100%;
}

.vmenu-navigation .vmenu-navigation-heading {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 10px 0;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vmenu-navigation .icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #132863;
    color: #ffffff;
    flex-shrink: 0;
}

.vmenu-navigation .icon-wrapper svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.vmenu-navigation .vmenu-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.vmenu-list > .vmenu-item {
    flex: 1 1 100%;
    overflow: hidden;
    position: static;
    max-width: 100%;
    width: 100%;
}

.vmenu-list .vmenu-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 45px;
    padding: 4px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.vmenu-list .vmenu-item-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.vmenu-list .vmenu-item-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.vmenu-list .vmenu-item-text {
    flex-grow: 1;
}

.vmenu-list .vmenu-arrow {
    align-items: center;
    color: #adadad;
    display: inline-flex;
    flex-shrink: 0;
    justify-content: flex-end;
    height: 20px;
    margin-left: auto;
    width: 20px;
}

.vmenu-list .vmenu-arrow svg {
    transform: rotate(-90deg);
    transition: transform 0.2s ease;
}
.vmenu-item.has-dropdown:hover > .vmenu-trigger .vmenu-arrow svg,
.vmenu-item.has-dropdown .vmenu-trigger[aria-expanded="true"] .vmenu-arrow svg {
    transform: rotate(-90deg);
}

.vmenu-panel {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0 12px  12px 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    left: 100%;
    max-height: 80vh;
    max-width: 90vw;
    min-height: 200px;
    opacity: 0;
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    pointer-events: none;
    top: 0;
    transform: translateY(10px) translateX(-5px) scale(0.98);
    transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1),visibility 0.4s cubic-bezier(0.19, 1, 0.22, 1),transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    visibility: hidden;
    width: 980px;
    z-index: 99;
}

.vmenu-panel::-webkit-scrollbar {
    width: 6px;
}

.vmenu-panel::-webkit-scrollbar-track {
    background: transparent;
}

.vmenu-panel::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.vmenu-panel::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}
.vmenu-item.has-dropdown:hover {
    overflow: inherit;    
}
.vmenu-item.has-dropdown:hover > .vmenu-panel,
.vmenu-item.has-dropdown:focus-within > .vmenu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transform: translateY(0) translateX(0) scale(1);
    visibility: visible;
}

.vmenu-panel .vmenu-content {
    opacity: 0;
    padding-inline: 30px;
    padding-block: 30px;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.vmenu-item.has-dropdown:hover > .vmenu-panel .vmenu-content,
.vmenu-item.has-dropdown:focus-within > .vmenu-panel .vmenu-content,
.vmenu-panel[aria-hidden="false"] .vmenu-content {
    opacity: 1;
    transform: translateY(0);
}

.vmenu-panel .vmenu-content .vmenu-editor-placeholder {
    background-color: #f9f9f9;
    border: 1px dashed #ccc; 
    color: #666;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    padding-block: 15px;
    padding-inline: 15px;
    text-align: center; 
}