/* Default font size */
html {
    --pst-font-size-base: 15px;
}

/* Definition of colors, according to Brain-Link cooporate design */
html[data-theme="light"] {
    --pst-color-primary: #005678;
    --pst-color-secondary: #E92076;
    --pst-color-warning: #E92076;
    --pst-color-info: #005678;
}

html[data-theme="dark"] {
    --pst-color-primary: #00A1E0;
    --pst-color-secondary: #E92076;
    --pst-color-warning: #E92076;
    --pst-color-info: #00A1E0;
}
/* Logo: space between image and title text, no underline on hover */
.navbar-brand img {
    margin-right: 0.75rem;
}

.navbar-brand:hover {
    text-decoration: none;
}

