@charset "utf-8";
/* CSS Document */
.custom-nav {
            background-color: #0716BA;
        }
.bg-primary {
    background-color: #0716BA !important;
}
.text-primary {
    color: #0716BA !important;
}
.make-it-bold {
    font-weight: bold;
}
.button {
  transition-duration: 0.4s;
}

/* Base styling for the button */
.button {
  display: inline-block;
  background-color: #007bff; /* Base color (matches typical primary blue) */
  color: white !important;   /* Force text color to white */
  text-decoration: none;     /* Remove the default link underline */
  padding: 10px 20px;        /* Spacing inside the button */
  border-radius: 5px;        /* Slightly rounded corners */
  font-family: Arial, sans-serif;
  font-weight: bold;
  transition: background-color 0.2s ease; /* Smooth color transition on hover */
}

/* Hover state styling */
.button:hover {
  background-color: #0716BA; /* Your deep blue color */
  color: white;
  text-decoration: none;     /* Ensure underline stays gone on hover */
}

.runhigh-footer {
    background-color: #0716BA;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 30px 15px 15px 15px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.footer-subtitle {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #e0e4ff;
    margin: 0;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 20px auto;
    width: 60%;
    max-width: 400px;
}

.footer-address {
    font-size: 0.95rem;
    margin: 0 0 12px 0;
    opacity: 0.95;
}

.footer-comms {
    font-size: 1rem;
    margin-bottom: 25px;
}

.footer-comms a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-comms a:hover {
    text-decoration: underline;
    opacity: 0.85;
}

.comms-spacer {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    opacity: 0.7;
}

/* Base state for your registration list group links */
.list-group .list-group-item-action {
    color: #0716BA !important; /* Forces your primary dark blue text color */
    background-color: #ffffff;
    border-color: rgba(7, 22, 186, 0.15); /* Gives a soft tint border using your brand color */
    transition: all 0.25s ease-in-out; /* Smooth transition timing */
}

/* Hover & Active state effects */
.list-group .list-group-item-action:hover {
    color: #007bff !important; /* Smoothly switches text to bright blue */
    background-color: #f8f9fa; /* Slightly darkens the background block */
    border-color: #007bff; /* Turns the border bright blue */
    padding-left: 20px; /* Optional subtle nudge to the right for a modern feel */
}

/* Keeps the location text readable on hover */
.list-group .list-group-item-action:hover .text-muted {
    color: #6c757d !important; 
}




