body {
    scroll-behavior: smooth;
}
* {
    scroll-margin-top: 100px;
}

.bg-dark {
    background-color: #000000 !important;
    /*  Changing the background color will change the main color used in the web app for the navigation bar etc */
}

#content {
    margin-top: 20px;
    margin-bottom: 20px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">" !important;
}

label {
    font-weight: bold;
}

.green {
    color: #00ac46;
}

.red {
    color: #d92e0f;
}

.orange {
    color: #efa700;
}

.caption {
    font-style: italic;
    font-size: smaller;
}

.caption-straight {
    font-size: smaller;
}

.no-wrap {
    white-space: nowrap;
}

.cursor-pointer {cursor: pointer;}

.cursor-context-menu {cursor: context-menu;}

.cursor-no-drop {cursor: no-drop;}

.copy {
    position: relative;
}

.copydone {
    /*font-family: sans-serif;*/
    font-size: 10px;
    opacity: 0;
    transform: translateY(-1em);
    color: #FFFFFF;
    transition: all .500s;
    position: absolute;
    top: 21px;
    left: 20px;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 10px;
    background-color: #00ac46;
}
.copied .copydone {
    opacity: 1;
    transform: translateY(-2em);
}
