/* =================================================== */
/* SECTION: Footer Styles - Copyright and version info */
/* =================================================== */
/*
 * Purpose: Bottom footer with centered text.
 * - Small font for subtlety.
*/
footer {
    /* Purpose: Alignment and spacing */
    text-align: center;
    margin-top: 20px;
    padding: 20px 0;
    /* Purpose: Typography */
    font-size: 0.85rem;
    color: #777;
}
footer p {
    margin: 1px 0; /* Keeps the two lines close together */
}
/* Footer version link */
#versionLink {
    /* Purpose: Interaction */
    cursor: pointer;
    color: #777;
    text-decoration: underline;
}
#versionLink:hover {
    color: #E30613;
}