.printer-only {
    display: none;
}

@media print {
    .printer-only {
        display: block;
    }

    .screen-only {
        display: none;
    }
}

tr.clickable-row {
    cursor: pointer;
}

td.clickable-cell {
    cursor: pointer;
}

.bg-gbikes {
    background-color: #f5d22b;
}

.bg-navsub {
    background-color: #e9ecef;
}

/* DASHBOARD */

.infocards div.card {
    min-width: 192px;
}

.infocards div.card.clickable-row {
    cursor: pointer;
}

.infocards div.card > .card-body span.h2 {
    font-size: 20px;
    font-family: Nunito, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #5a5c69;
}

.infocards .card-title {
    color: #95aac9;
    font-family: "Cerebri Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.8px;
}

.infocards div.card.status-planned {
    border-left-color: #fdc02e;
    border-left-width: 5px;
}

.infocards div.card.status-new {
    border-left-color: #157ffb;
    border-left-width: 5px;
}

.infocards div.card.status-inprogress {
    border-left-color: #24a2b6;
    border-left-width: 5px;
}

.infocards div.card.status-fixed {
    border-left-color: #30a542;
    border-left-width: 5px;
}

.infocards div.card.status-waitingforparts {
    border-left-color: #d73749;
    border-left-width: 5px;
}

.fc-sun {
    color: red;
}

.status-selector .status-planned {
    background-color: rgba(253, 192, 46, 0.68);
    color: black;
}

.status-selector .status-new {
    /*background-color: rgba(21, 127, 251, 0.68);*/
    background-color: lightskyblue;
    color: black;
}

.status-selector .status-inprogress {
    background-color: rgba(48, 165, 114, 0.67);
    color: black;
}

.status-selector .status-fixed {
    /*background-color: rgba(0, 187, 0, 0.68);*/
    background-color: lightgreen;
    color: black;
}

.status-selector .status-waitingforparts {
    /*background-color: rgba(255, 0, 0, 0.68);*/
    background-color: lightcoral;
    color: black;
}

.status-selector .status-released {
    background-color: lightgrey;
    color: black;
}

.todo-update-time {
    color: #8d8b8b;
    font-size: 10px;
}