/* Scrollbar CSS */
div::-webkit-scrollbar {
    width: 14px;
    margin: 1px;
}

div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 4px;
}

div::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    border: 1px solid white;
    border-radius: 4px;
}
/* Scrollbar End */

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: var(--link);
    font-weight: bold;
}

label {
    font-weight: bold;
}

#dialog-help-message {
    font-size: 14px;
    line-height: 20px;
}

#help-message-icon #help-message-text {
    display: none;
}

#help-message-icon .title {
    display: inline-block;
}

#help-message-icon .title:before {
    margin-right: 6px;
}

.help-icon {
    cursor: pointer;
    max-height: 45px;
    float: right;
    position: fixed;
    right: 27px;
    top: 36px;
}

.confirm {
    color: var(--confirm);
}

.warning {
    color: var(--cancel);
}

#scrollable {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

#ajax_result {
    width: 100%;
    height: 93%;
    padding: 0;
    margin-top: 55px;
    clear:left;
    float:left;
    overflow-y: auto;
}

/* Nya ajax-result från fw2 */
#ajax-result {
    width: 100%;
    padding: 0px;
    float:left;
    overflow-y: auto;
    max-height: 95vh;
}

.div-horz-seperator {
    width: 95%;
    height: 2px;
    border-bottom: 1px outset;
    margin: 4px 0px;
}

.add-user-watch-popup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.add-user-watch-popup input, .add-user-watch-popup select {
    text-align: center;
}

/* Sidbeskrivningen i toppen på vissa sidor */
i.description {
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 1.5em;
    font-size: 13px;
}

input[type="button"] {
    cursor: pointer;
}

input[type="button"]:hover {
    background-color: var(--functional);
}