/* SIDEBAR DEFINITIVE FIX - 350PX */
#sidebar-wrapper {
    z-index: 1000 !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 350px !important;
    height: 100% !important;
    background: #FFFFFF !important;
    transition: all 0.5s ease !important;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1) !important;
    overflow-y: auto !important;
}

#logo-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
}

#wrapper.toggled #sidebar-wrapper {
    width: 0 !important;
    overflow: hidden !important;
}

/* Ensure pickerInput inside sidebar is usable */
#sidebar-wrapper .bootstrap-select {
    width: 100% !important;
    margin: 0 !important;
    padding: 10px 15px !important;
}

#sidebar-toggle {
    float: left;
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: background 0.2s;
}

#sidebar-toggle:hover {
    background-color: #f5f5f5;
}

#hamburgerCloseToggle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

#hamburgerCloseToggle a {
    color: var(--color-primary);
    font-size: 1.5rem;
    line-height: 1;
}