/**********************************************************************
 * Right Sidebar Styles
 * Activity feed, service queue, notifications panel
 **********************************************************************/

#rightSidebar {
    background: var(--right-sidebar-bg);
    width: var(--right-sidebar-width, 360px);
    min-width: var(--right-sidebar-width, 360px);
    max-width: var(--right-sidebar-width, 360px);
    flex: 0 0 var(--right-sidebar-width, 360px);
    overflow: auto;
    position: relative;
}

@media (max-width: 1024px) {
    #rightSidebar {
        display: none;
    }
}

#rightSidebar .sidebar-resize-handle {
    position: absolute;
    top: 0;
    left: -3px;
    width: 6px;
    height: 100%;
    cursor: col-resize;
    background: transparent;
    z-index: 5;
}

#rightSidebar .sidebar-resize-handle::after {
    content: "";
    position: absolute;
    top: 0;
    left: 2px;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    opacity: 0;
    transition: opacity 0.15s ease;
}

#rightSidebar:hover .sidebar-resize-handle::after {
    opacity: 1;
}
