/* Statistics page */
.dashboard .blue-card .card-icon {
    color: #4154f1;
    background: #f6f6fe;
}

.dashboard .green-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .orange-card .card-icon {
    color: #ff771d;
    background: #ffecdf;
}

.dashboard .red-card .card-icon {
    color: rgb(220, 53, 69);
    background: #ffdcdf;
}

/* Fields validation errors */
ul.errorlist li {
    font-size: 0.8125rem;
    display: block;
    margin-bottom: 4px;
    overflow-wrap: break-word;
    margin-top: 2px;
}

ul.errorlist {
    margin: 0 0 4px;
    padding: 0;
    color: #ba2121;
}

.invalid-input {
    border-color: #ba2121;
}

/* Request journal */
table.with-hidden-description td {
    max-width: 300px;
}

.hidden-description {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table td.desc-full {
    white-space: normal;
    padding: 0 !important;
}

tr.without-bottom-border {
    transition: transform 0.2s ease-in-out;
}

tr.without-bottom-border > td {
    border-bottom: 0 !important;
}

.custom-accordion-btn::before {
    display: inline-block;
    content: "\f282";
    font-family: bootstrap-icons !important;
    transition: transform 0.2s ease-in-out;
}

.custom-accordion-btn:not(.collapsed)::before {
    transform: rotate(-180deg);
}

td.request-journal-heading {
    font-weight: 600;
}

