/* Fix for the purple sidebar issue */
.cpcs-chat-panel {
    z-index: 900 !important; /* Ensure it doesn't leak over other content */
}

/* Make sure content containers don't have overflow issues */
.content-container {
    position: relative;
    overflow: visible; /* Let contents flow naturally */
    z-index: 1;
}

/* Ensure cards have proper spacing and no overflow issues */
.card {
    overflow: hidden;
}

/* Fix for supporting documents section to prevent the purple bar */
#supporting-documents-card {
    position: relative;
    z-index: 10;
    overflow: hidden;
    clear: both;
} 