/* Right design-only panel (flowing inside grid) */
.right-side-panel {
    /* background: #f7f7f7; */
    border-left: 1px solid #e6e6e6;
    padding: 20px;
    box-sizing: border-box;
    min-height: 100%;
}

/* Visual accent header inside the panel */
.right-side-panel .panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.right-side-panel .panel-title {
    font-weight: 700;
    color: #222;
    font-size: 16px;
}
.right-side-panel .panel-body {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

/* Responsive: hide on small screens */
@media (max-width: 991px) {
    .right-side-panel { display: none; }
}