/*Programmer: dorlan.francis@dfo-mpo.gc.ca*/

/*Date: 17-Apr-2023*/
/*Description: 10-Apr-2023 Susan requested larger font size for the side menu*/
/*CSS target ul(class="sidebar-menu")>li> span & (i)con elements*/
/*Targeting shinydashboard CSS, Delete if dashboard changed*/
Ul.sidebar-menu li span, Ul.sidebar-menu li i{
  Font-size: 1.25em; /*was 14px, change to 20px (1em=16px)*/
}
/*Date: 29-JUn-2023*/
/*Added some spacing between icon and lable*/
Ul.sidebar-menu li i{
 padding-right: 5px;
}
/*Date: 12-Jun-2023*/
/*Custom CSS to highlight save button text on mouse over*/
/*Button control found in mod_07_download_report.R*/
Ul.sidebar-menu a.custom-save-btn:hover{
  color:white;
}
