/* ============================================================
   INTERACTIVE ELEMENTS - Shared Utilities
   ============================================================ */

/* Style a button to appear as a link */
.fakeLink {
    background: none;
    border: none;
    color: var(--ds-link-color, #0077cc);
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    padding: 0;
    font: inherit;
}

.fakeLink:hover {
    text-decoration: underline;
}

.fakeLink:active {
    opacity: 0.8;
}
