.toast {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
}

/* Hide columns in print view */
@media print {
    .print-hidden {
        display: none !important;
    }
}

.form-label.compulsory::after {
    content: "*";
    /* Add asterisk */
    color: red;
    /* Set color to red */
    margin-left: 4px;
    /* Add some spacing between label and asterisk */
}

/* Override dark theme styles for date input */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    /* Invert the colors of the calendar icon */
}

input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    /* Invert the colors of the calendar icon */
}

/* .table tbody td,
.table th {
    white-space: nowrap;
} */
.table tbody {
    white-space: nowrap;
}