.link-a {
    /* word-break: break-all; */
    /* color: orangered; */
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--color-link);
}

.link-a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}


.link-b {
    color: var(--color-link);
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 8px;
    margin-bottom: 0px;
}

.link-b:last-child {
    margin-bottom: 0px;
}


.link-b:hover {
    text-decoration: underline;
}


.link-c {
    color: var(--color-link);
    font-size: 0.8rem;
    text-decoration: none;
    margin-left: 8px;
    margin-bottom: 0px;
    user-select: none;
}

.link-c:hover {
    color: var(--color-link-highlighted);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}




.td-link {
    /* need the important for when this is in a table total row cell */
    color: var(--color-link) !important;
    text-decoration: none;
    margin-bottom: 0px;
    user-select: none;
}

.td-link:hover {
    color: var(--color-link-highlighted);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.td-link:disabled {
    color: silver;
    text-decoration: none;
    user-select: none;
}

.td-link-disabled {
    color: silver;
    text-decoration: none;
    user-select: none;
}


.change-password-link {
    padding: 30px 0 0 30px;
}



/* Default: looks disabled */
.div-edit-chk-link .link-multi-curr-editor {
    color: silver !important;
    text-decoration: none;
    cursor: default;
    opacity: 0.75;
    pointer-events: none;
    /* not clickable */
    user-select: none;
    margin-left: 6px;
}

/* When checkbox is checked: looks like a hyperlink and is clickable */
.div-edit-chk-link input[type="checkbox"]:checked+.link-multi-curr-editor {
    opacity: 1;
    color: powderblue !important;
    text-underline-offset: 3px;
    cursor: pointer;
    pointer-events: auto;
    /* clickable */
}

.div-edit-chk-link input[type="checkbox"]:checked+.link-multi-curr-editor:hover {
    color: aqua !important;
    text-decoration: underline;
}