a {
    color: #1c3687; /* Change this to your desired color */
}

/* Change link color on hover */
a:hover {
    color: #10acc5; /* Change this to your desired hover color */
}

/* Change link color for visited links 
/* Change link color for active links */
a:visited {
    color: none; /* Change this to your desired visited link color */
    border: 1px solid #bc2123; /* Red border */
    padding: 2px; /* Add padding to make space for the border */
    display: inline-block; /* Ensure the border wraps around the link properly */
}
	
/* Primary button text color */
.btn-primary {
    color: #FFF; /* White */
}

/* Primary button background color */
.btn-primary {
    background-color: #bc2123; /* Red */
    border-color: #bc2123; /* Red */
}

/* Primary button hover state */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-color: #bc2123; /* Red */
    border-color: #bc2123; /* Red */
}

/* Primary button active state */
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}

/* Primary button disabled state */
.btn-primary:disabled,
.btn-primary.disabled,
fieldset[disabled] .btn-primary,
.btn-primary:disabled:hover,
.btn-primary:disabled:focus,
.btn-primary:disabled:active,
.btn-primary:disabled.active {
    background-color: #bc2123; /* Red */
    border-color: #bc2123; /* Red */
}

