/* Text colour on the H1 heading tag */
.txt-color-red {
    color: #36499b!important;
	font-size: 1.8em;
	font-weight: 600!important;
}

/* Change the "Need An Account?" text colour on the welcome page (top-right) */
#login-header-space {
    color: white;
}

/* Add an aqua bottom border to the header on the welcome page */
#login #header {
	border-bottom: 0.5rem solid #39b9b9!important;
}

/* Add an aqua bottom border to the header on all subsequent pages. Also the border must be smaller than the one on the welcome page */
#header {
	border-bottom: 0.2rem solid #39b9b9!important;
}

/* Change the test colour for Arun's contact details on the left hand navigation panel */
span#left_hand_menu_council_contact_details {
	color: white;
}

/* Change the font size for the website url and text at the bottom of the left hand navigation panel */
span#left_hand_menu_council_contact_details span {
	font-size: 14px!important;
}

/* Change the width of the Arun logo on the welcome page to59px */
#login #header #logo img {
    width: 59px!important;
}

/* Change the width of the Arun logo to 48px on subsequent pages, for example the Food Business Register */
#logo img {
    width: 48px!important;
}
/* Changes the colour of the text for the word "Menu" (top-right) to white */
.pull-right {
    color: white;
}

/* Change the background color of the numbers to dark blue on the tabs at the top of the View Licence Register page */ 
.bg-color-red {
    background-color: #36499b!important;
}

/* Review the colour */
.footer {
    color: ghostwhite;
}

/* Change the background colour to dark green for the default button class */
.btn-default {
  background-color: #f3f2f1;
}

/* Change the css properties for the primary button class (Sign In) */
.btn-primary {
  color: #ffffff;
  background-color: #00703c;
  border-color: #2c699d;
}

/* Change the css properties for the primary button class (Sign In) when the mouse hovers over it */
.btn-primary:hover {
  color: #ffffff;
  background-color: #002d18;
  border-color: #2c699d;
}


/* Change the css properties for the danger Will Robinson button class (Register) */
.btn-danger {
  color: #ffffff;
  background-color: #00703c;
  border-color: #2c699d;
  text-decoration: none;
}

/* Change the css properties for the danger Will Robinson button class (Register) when the mouse hovers over it */
.btn-danger:hover {
  color: #ffffff;
  background-color: #002d18;
  border-color: #2c699d;
}

/* Change the css properties for the primary, sucess and danger button classes when they have been selected */
.btn-primary:focus, .btn-danger:focus, .btn-success:focus, .btn-default:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* Change the text color for links and ensure they are underlined. This mimics the Arun website */
a {
    color: #3276b1;
    text-decoration: underline;
}

/* Remove the underline from the link when the mouse hovers over it. This mimics the Arun website */
a:hover {
    color: #3276b1;
    text-decoration: none;
}

