/* Fix for left sidebar scrolling */
.sidebar-left {
    overflow-y: auto !important;
    max-height: calc(100vh - 80px) !important;
    height: auto !important;
}

/* Fix for voice participants container - reduce height */
.voice-participants-container {
    max-height: 200px !important;
}

/* Fix for audio settings - collapsed by default */
.audio-settings-content {
    max-height: 300px;
    overflow-y: auto;
}

/* Fix for audio diagnostics - smaller */
.audio-diagnostics-content {
    max-height: 200px;
    overflow-y: auto;
}
/* Fix main page scrolling */
.main-content-new {
    height: auto !important;
    min-height: calc(100vh - 90px) !important;
    overflow: visible !important;
}

/* Ensure sidebars can scroll independently */
.sidebar-left,
.sidebar-right-new {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
