.sidebar-widget {
    display: flex;
    flex-direction: column;
    width: 120px;
}

.sidebar-widget-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 44px;
    height: 84px;
    box-sizing: border-box;
    background-color: var(--color-primary);
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-neo);
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    white-space: nowrap;
    overflow: hidden;
    transition: background-color 0.2s;
}

.sidebar-widget-item:hover {
    background-color: var(--color-primary);
}

.sidebar-widget-logo {
    width: 70px;
    height: auto;
    flex-shrink: 0;
    max-width: none;
}

.sidebar-widget-icon-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-widget-divider {
    height: 1px;
    background-color: var(--color-primary-div);
    width: 100%;
}
