/* OJS 3.4 - Move sidebar to the right */

/* Sidebar container */
.pkp_structure_sidebar {
    float: right;   /* Move sidebar to the right side */
    order: 2;       /* Works if layout uses flex/grid */
    margin-left: 20px; /* Add spacing from main content */
}

/* Main content area */
.pkp_structure_main {
    float: left;    /* Keep content on the left side */
    order: 1;
}
