/* Sort indicators for tables generated with django_tables2 */

table.table thead th.desc.orderable::before {
    content: "▼ ";
    color: gray;
}

table.table thead th.asc.orderable::before {
    content: "▲ ";
    color: gray;
}

/* Remove bottom margin of pararaphs for markdown */
.no-p-margin p:last-child {
    margin: 0px;
}

.asteriskField {
    color: red; /* Make the asterisk red */
    font-weight: bold;
    margin-left: 3px; /* Small space after the label text */
}

form label {
    font-weight:bold;
    font-size: small;
    /* Reduce distance between form label and form field */
    margin-bottom: 0.1rem !important;
}
