.logo {
    color: #87CEEB !important;
    }

td, th, a, span, label {
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    }

thead.is-sortable, tbody.is-clickable {
    cursor: pointer;
    }

.centered {
    text-align: center;
    }

.is-0 {
    font-size: 3.25rem;
    }

.input-required:after {
    content:" *";
    color: red;
    }

.deleted {
    text-decoration: line-through;
    color: lightslategray;
    }

.inactive {
    color: lightslategray;
    }

.hidden {
    display: none !important;
    }

a.disabled {
    cursor: not-allowed;
    }

th.sorted-asc:after {
    content: " \25bc"; /* Unicode BLACK DOWN-POINTING TRIANGLE */
    }

th.sorted-desc:after {
    content: " \25b2"; /* Unicode BLACK UP-POINTING TRIANGLE */
    }

th.unsorted:after {
    content: " \25b2"; /* Unicode BLACK UP-POINTING TRIANGLE */
    color: transparent;
    }

.main {
    padding: 1.5rem;
    }

.icon-column {
    width: 20px;
    cursor: pointer;
    }

.is-danger.tableinput, .is-danger.textarea {
    border-color: #f14668;
}

.is-danger.tableinput:focus {
    box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25);
}

.relative {
    position: relative;
    }


.quarantined {
    content: '⚠';
    background-color: #ffe08a;
    color: black;
    }

.prev-button {
  position: absolute;
  top: 50%;
  left: 1%;
}

.next-button {
  position: absolute;
  top: 50%;
  right: 1%;
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    }

/* https://stephanwagner.me/only-css-loading-spinner */
@keyframes spinner {
    to {transform: rotate(360deg);}
    }
 
.spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #000;
    animation: spinner .6s linear infinite;
    }

