/* Add to your site CSS */
.quick-links-list {
    padding-bottom: 10px;
}

    .quick-links-list li {
        margin-bottom: 0.5rem;
        list-style: none; /* bootstrap may already handle this */
    }

.quick-link {
    display: block;
    padding: 0.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    background: transparent;
}

    /* Visible, high-contrast focus indicator for keyboard users */
    .quick-link:focus {
        outline: 3px solid #0b84ff;
        outline-offset: 2px;
        box-shadow: 0 0 0 3px rgba(11, 132, 255, 0.12);
    }

/* screen-reader-only helper */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .quick-link {
        transition: none !important;
    }
}
