﻿/* universal styles for allan sites */
/* <link href="/aslib/accss/allan.css" rel="stylesheet" /> */
/* <link href="/aslib/fapro6.1.1/css/all.min.css" rel="stylesheet" /> */
.debug {
    display: none; /* universally hide debug on production, to show use $('.debug').show() or display:block !important; */
}

a, .btn-link, button.btn-link { /* underlined links are just always ugly so let's get rid of them everywhere */
    text-decoration: none; /* for bootstrap - underlined links are just always ugly so let's get rid of them everywhere */
}

.bold {
    font-weight: bold;
}

.text-right {
    text-align: right !important; /* bootstrap 5.3 replace text-right with text-end, but I prefer text-right */
}
.ml-auto {
    margin-left: auto !important; /* bootstrap 5.3 replace ml-auto with ms-auto, but I prefer ml-auto */
}

.pointer {
    cursor: pointer;
}