﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* Default State */
.footer-accessibility-link:default {
    color: #006580; /* Teal text */
    text-decoration: underline;
    position: relative;
    transition: color 0.25s ease, background-color 0.25s ease;
    padding: 2px 4px; /* Small padding for better background visibility */
    border-radius: 3px; /* Slight rounding for modern look */
}
/* Hover State */
    
.footer-accessibility-link:hover {
    color: #0F475A; /* Darker teal text */
    background-color: #D5E6EA; /* Teal overlay */
}

/* Active & Focus States */
.footer-accessibility-link:active,
.footer-accessibility-link:focus {
    color: #0F475A; /* Darker teal text */
    background-color: #D5E6EA; /* Teal overlay */
    outline: 2px solid #000000; /* Black outline */
    outline-offset: 2px; /* Space between outline and text */
}
/* Optional: improve focus visibility for keyboard users */
.footer-accessibility-link:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 101, 128, 0.4);
}