 .reset_course_content_button  
{  
	display: none;  
}  


/* =========================================================================
   BISA — Gradebook Class Average Bar
   Styles for the summary bar injected at the bottom of the Gradebook page
   by the accompanying custom JavaScript. All selectors are prefixed with
   "bisa-" so they cannot affect any native Canvas element.
   ========================================================================= */
#bisa-class-average-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background-color: #f5f5f5;
    border-top: 2px solid #0374b5;
    font-size: 14px;
    color: #2d3b45;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.08);
}

#bisa-class-average-bar .bisa-avg-label {
    font-weight: 700;
    white-space: nowrap;
}

#bisa-class-average-text {
    flex: 1 1 auto;
    min-width: 0;
}

#bisa-class-average-refresh {
    flex: 0 0 auto;
}

#bisa-class-average-close {
    flex: 0 0 auto;
    border: none;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #6b7780;
    padding: 2px 6px;
}

#bisa-class-average-close:hover {
    color: #2d3b45;
}
