table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #151515;
    border-radius: 5px;
    overflow: hidden;
}

th {
    background-color: #ffaa00;
    color: #000000;
    font-weight: 600;
    text-align: left;
    padding: 12px;
    font-family: 'Raleway', sans-serif;
}

th::before {
    padding-right: 5px;
}

td {
    padding: 10px 12px;
    border-bottom: none;
    color: #ffffff;
}

tr:nth-child(even) {
    background-color: #181818;
}

tr:hover {
    background-color: #1e1e1e;
    transition: background-color 0.3s ease;
}

tr:last-child td {
    border-bottom: none;
}

.dt-container {
    width: 100%;
    margin: 0 auto;
    background-color: #151515;
}

.dt-search {
    display: flex;
    align-items: center;
    margin-bottom: -15px;
}

.dt-input {
    margin-bottom: 0;
}

.dt-paging {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 5px;
}

.dt-paging nav {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.dt-paging-button {
    font-family: 'Open Sans', sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    margin: 0;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
}


.dt-paging-button:hover:not(.disabled):not(.current) {
    background-color: #2a2a2a;
}

.dt-paging-button.current {
    background-color: #ffaa00;
    color: #000000;
}

.dt-paging-button.disabled {
    background-color: #1e1e1e;
    color: #505050;
    cursor: not-allowed;
    opacity: 0.6;
}

.dt-info {
    color: #808080;
    font-size: 14px;
}

.dt-column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    position: relative;
}

.dt-column-order {
    position: absolute;
    right: 8px;
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.dt-type-numeric {
    text-align: right;
}

.dt-orderable-asc.dt-ordering-asc .dt-column-order::before,
.dt-orderable-desc.dt-ordering-desc .dt-column-order::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.dt-orderable-asc.dt-ordering-asc .dt-column-order::before {
    border-bottom: 6px solid #000000;
}

.dt-orderable-desc.dt-ordering-desc .dt-column-order::before {
    border-top: 6px solid #000000;
}

.dt-orderable-asc:not(.dt-ordering-asc):not(.dt-ordering-desc) .dt-column-order:hover::before,
.dt-orderable-desc:not(.dt-ordering-asc):not(.dt-ordering-desc) .dt-column-order:hover::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid rgba(0, 0, 0, 0.3);
}

.soft {
    color: #909090;
    font-family: dejaVu Sans Mono, monospace;
}


@media only screen and (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}