
.everything {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 14.7px;
}

    
html{
font-size: 62.5%;
}

body{
font-family: verdana, sans-serif;
font-size: 1.8rem;
padding-inline: 1rem; /* It's better to set horizontal padding on the body than margins on the header to stop it touching edges */  
}

header{
padding: 1rem; /* Set some padding on the header so content doesn't touch the edges */  
background: #EDE7F8; /* Set the background colour of the header */  
margin-bottom: 1rem; /* Add a bottom margin to give some whitespace before the <hr> */  
}
    
.logo_title {
color: #2C1951; /* Set the colour of the title text */  
font-size: 3.5rem; /* Set the font-size of the title text */  
text-align: center; /* Center align it */  
}

ul.breadcrumb{
list-style: none; /* turn off default list style of bullet points */  
display: flex; /* Using display:flex will give a horizontal list instead of default vertical one */  
flex-wrap: wrap; /* Allows linebreaks if needed, shouldn't occur with how little content there is, but is a fall back to stop the list overflowing on very small screens */  
}

ul.breadcrumb li+li:before {
    padding: 5px;
    content: "/\00a0";
}

ul.breadcrumb li a {
    text-decoration:none; 
    color: #3366CC;
}

.page_title_style {
    text-align: center;
    font-size: 20px}

#resource_link {
    text-decoration: none;
    color: #3366CC
}

#resource_link:hover {
    text-decoration: underline;
}

.mainbodytext {
    margin-left: 5%;
    margin-right: 5%;
}

ul.topics_list li {
    list-style: none;
    margin: 5px 0px;
}

.generictable {
    width: fit-content;
    height: fit-content;
    font-size: 14.7px;
    margin-left: auto;
    margin-right:auto;
    margin-top:0;
    margin-bottom: 0;
    text-align: center;
    border:1px black solid;
  }

/*
.generictable {
    width: 600px;
    font-size: 14.7px;
    margin-left:auto;
    margin-right:auto;
    margin-top:0;
    margin-bottom: 0;
    text-align: center;
    border:1px black solid;
  } */

/* Green Table Style */

.green_table_title {
    background-color: #A8D08D;
    font-weight:600;
}
.green_table_body {
    background-color: #E2EFD9;
}

/* Yellow Table Style */

.yellow_table_title {
    background-color: #FEE599;
    font-weight:600;
}
.yellow_table_body {
    background-color: #FFF2CC;
}

/* Red Table Style */

.red_table_title {
    background-color: #F5B7A6;
    font-weight:600;
}

.red_table_body {
    background-color: #FADBD2;
}

/* Purple table style*/

.purple_table_title {
    background-color: #CCC2D9;
    font-weight:600;
}

.purple_table_body {
    background-color: #E5E0EC;
}

/* Blue table style*/

.blue_table_title {
    background-color: #BDD7EE;
    font-weight:600;
}

.blue_table_body {
    background-color: #DEEBF6;
}

/* Orange table style*/

.orange_table_title {
    background-color: #F7CBAC;
    font-weight:600;
}


.orange_table_body {
    background-color: #FBE5D5;
}

/* Mixed table style*/

.mixed_table_title {
    background-color: #BDD7EE;
    font-weight: 600;
}

/*Subtytle sytles*/

.subtitle_bold {
    font-weight: 600;
    font-size: 16px;
}

.subtitle_underline {
    text-decoration: underline;
    text-indent: 2%;
    font-size: 16px;
}

.subtitle_italic {
    font-style: italic;
    text-indent: 5%;
    font-size: 15px;
    }

/*Text styles*/

.bold_text {
    font-weight: 600;
}

#red_text {
    color:red;
}

#purple_text {
    color:#5F497A;
}

#yellow_text{
    color:#BF9000;
}

#green_text {
    color:#538135;
}

#blue_text {
    color:#2E75B5
}

/*Image styling*/

.generic_image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

/*Collapsible section styling*/

.collapsible {
    background-color: #2C1951;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    border-radius: 7.5px;
  }
  
  .active, .collapsible:hover {
    color: #E96086;;
  }
  
  .collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2212";
  }
  
  .content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
  }

.exam_choice_button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    height: 45px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color:#2C1951;
    color: white;
    font-size: 20px;
    text-align:center;
    line-height: 45px;
    text-decoration: none;
    transition: 0.5s;
    border-radius: 7.5px
}

.exam_button {
    color:white;
    text-decoration: none;
}

.exam_button:hover {
    color: #E96086;
}

.coffee {
    text-align: center;
    font-size: 17px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5px;
    padding-right: 0.5px;
}

#coffee {
    text-decoration: none;
}


