.navbar {
    
  /*   the "best" shade of black is often not a pure black (#000000), 
  but rather a slightly softer "off-black" like #222222 or #333333, as these provide better 
  contrast with text while still maintaining a dark appearance and reducing eye strain; this is often referred to as "charcoal" or "oil black
  background-color: RED !important; */
     background-color: #222222 !important;
}


.btn-primary {
       --bs-btn-color: #fff;
       /* Was 
        --bs-btn-bg: #0d6efd;
    --bs-btn-border-color: #0d6efd;   */
    --bs-btn-bg: #3E8DE3; /* Royal Blue - see https://blog.magezon.com/best-blue-websites-with-schemes-ecm/ */
    --bs-btn-border-color: #3E8DE3;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd; 
}




.center-horz {
  /* Center horizontally
  text-align: center;*/
    margin-left: auto;
  margin-right: auto;
}
body{
  font-family:  'Poppins', sans-serif;
 /* font-family: 'Ubuntu', sans-serif; */
}
#categoryname{
    font: Bold;
}

/* Hide judges Save and mark as complete - no changes allowed button   have to manage as a class (with a . period) not an ID cos when there are lots of them on a list page it has the record in the CSS ID.   If it is on the one page can be a # because it is a unique ID 
Classes are:
completejudging
discardjudgingentry
recuse
*/


.completejudging{
    display:none;
}
.discardjudgingentry{
    display:none;
}
.recuse{
    display:none;
}


