/* 
    Document   : DokX CSS
    Created on : 29.12.2023, 10:24:02
    Author     : Jørn Kjetil Strømsrud
    Description:

*/

.dokx-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.dokx-link:hover,
.dokx-link:focus {
    color: var(--bs-link-color);
    text-decoration: underline;
}

.dokx-link:focus-visible {
    outline: none;
    text-decoration: underline;
}

.dokx-link-muted:hover,
.dokx-link-muted:focus {
    color: inherit;
    text-decoration: underline;
}