body {
    text-align: center;
    background-image: url('../img/background.jpg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.logo {
    background-image: url('../img/logo.svg');
    background-repeat: no-repeat;
    background-size: 175px;
    background-position: center center;
    width: 252px;
    height: 120px;
    margin: 0 auto;
}

.logo-icon {
    /* display logo so appname can be shown next to it */
    display: inline-block;
    background-image: url(../img/logo-icon.svg);
    background-repeat: no-repeat;
    background-size: 61px 34px;
    height: 34px;
    color: #fff;
    margin: 0;
    padding: 0;
    padding-left: 66px;
    font-size: 1.04rem;
    font-weight: 300;
    line-height: inherit;
}
table {
    background-color: #aaaaaa;
}

.status-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.status-tooltip .status-tooltiptext {
    visibility: hidden;
    width: 120px;
    left: -120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.status-tooltip:hover .status-tooltiptext {
    visibility: visible;
}

.note-editable {
    background-color: #ffffff;
}