﻿body {
    background-color: #1e1e1e;
    color: #dcdcdc;
    font-size: 14px;
}

.page-title {
    color: #7CFC00;
}

.total-count {
    font-size: 14px;
    color: #aaa;
}

.custom-card {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
}

.section-title {
    background-color: #1f1f1f;
    color: #aaa;
    font-weight: 600;
}

ul {
    padding-left: 18px;
}

    ul li {
        margin-bottom: 6px;
    }

.table th {
    white-space: nowrap;
}

.table td em {
    color: #9acd32;
}

.table th {
    cursor: pointer;
    position: relative;
}

    .table th::after {
        content: "⇅";
        font-size: 11px;
        position: absolute;
        right: 8px;
        color: #777;
    }

    .table th.sort-asc::after {
        content: "↑";
        color: #7CFC00;
    }

    .table th.sort-desc::after {
        content: "↓";
        color: #7CFC00;
    }