/* - Remove the 'Drop this Course' from the Canvas home pages (Catalog enrollment) - */
 a.btn.button-sidebar-wide.self_unenrollment_link {
    display: none !important;
}

/*
11/21/2025
author: Eddie Matovu
This style addresses inaccessible-as-default colors for <code> tag
It would be used to manually style R code that is directly pasted into Canvas RCE
*/
code {
    font-size: 1.1em !important;
    color: #8c1414 !important;
    background-color: #f9f9f9 !important;
}
/*
11/22/2025
author: Eddie Matovu
This style modifies the vertical scroll bar on the left panel of the Canvas dashboard
such that the words for menu item names do not break across lines in the Chrome browser
*/
header#header::-webkit-scrollbar {
    width: 0.18rem;
}
header#header::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 1);
    }
header#header::-webkit-scrollbar-thumb {
	background-color: #8B8B8B; /*lighter color*/
    border-radius: 3px;
    }
header#header::-webkit-scrollbar-thumb:hover {
	background-color: #636363; /*darker color*/
    }