* {
    color: #404040
}
@media screen {

    .only-print,
    .only-print * {
        display: none !important;
    }
}

@media print {
    @page {
        margin: 0;
    }

    .pagebreak {
        page-break-after: auto;
    }

    /* page-break-after works, as well */
    .nopagebreak {
        page-break-before: avoid;
        page-break-after: avoid;
    }

    /* page-break-after works, as well */
    .nopagebreakinside {
        page-break-inside: avoid;
    }

    .no-print,
    .no-print * {
        display: none !important;
    }
}

.form-floating {

    .ts-wrapper.form-control,
    .ts-wrapper.form-select {
        height: calc(3.5rem + 2px);
        line-height: 1.25 !important;

        &:focus {
            padding-top: 1.625rem !important;
            padding-bottom: 0.625rem !important;
        }
    }

    .ts-control {
        padding: 0;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .ts-wrapper.single .ts-control input {
        height: calc(3.5rem + 2px);
        line-height: 1.25 !important;
        padding-top: 1.625rem !important;
        padding-bottom: 0.625rem !important;
    }

    .ts-control .item {
        height: calc(3.5rem + 2px);
        line-height: 1.25 !important;
        padding-top: 1.625rem !important;
        padding-bottom: 0.625rem !important;
    }
}

.scheduled {}

.completed {
    color: #4EA72E !important;
}

.delayed {
    color: #B95247 !important;
}

.overdue {
    color: #D2B32E !important;
}

.ontime {
    color: #336699 !important;
}

.ii {
    background: #E1A133 !important;
    font-family: "Roboto Mono", monospace;
    color: white;
}

.rd {
    background: #91AF24 !important;
    font-family: "Roboto Mono", monospace;
    color: white;
}

.me {
    background: #233267 !important;
    font-family: "Roboto Mono", monospace;
    color: white;
}

.g {
    background: #78206E !important;
    font-family: "Roboto Mono", monospace;
    color: white;
}

.o {
    background: #B39D87 !important;
    font-family: "Roboto Mono", monospace;
    color: white;
}

.imr {
    color: white;
}

.icons {
fill: #ffffff;
    color: #ffffff;
}

.comments {
    /* text-indent: 3em hanging each-line;
    text-indent: -2.0em;
    margin-left: 2.0em; */
    /* display: block; */
        /* padding-left: -8em;
                        text-indent: 4em; */
        text-indent: -2.0em;
        padding-left: 2.0em;
    width: 90%;
}

.table-wrapper {
    max-height: 55vh;
    overflow: auto;
    display: inline-block;
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.htmx-request {
    display: block !important;
}

.cover-spin::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

.cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
}

.floating-alert-box {
    position: fixed;
    top: 10px;
    /* width: 80vw; */
    z-index: 9999;
}