.realCon {
    display: flex;
}

._leftMenu {
    width: 140px;
    min-width: 140px;
    margin-right: 27px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding-top: 40px;
}

._leftMenu .menu-title {
    font-weight: 700;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #4A5668;
}

._leftMenu .menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

._leftMenu .menu-item {
    display: flex;
    align-items: stretch;
    padding: 8px 12px;
    background-color: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

._leftMenu .menu-item:hover span {
    font-weight: 700;
}

._leftMenu .menu-item.active {
    background-color: #E5F3FE;
}

._leftMenu .menu-item.highlight {
    background-color: #B8DDFA;
}

._leftMenu .menu-item span {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #191E24;
    width: 100%;
}

._leftMenu .menu-item.active span {
    font-weight: 700;
    color: #040404;
}