body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    background-color: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

h2 {
    text-align: center;
    padding: 20px;
    margin: 0;
    background-color: #121212;
    color: #f3d40f;
}

h3 {
    text-align: center;
    padding: 10px;
    margin: 0;
    background-color: #121212;
    color: #f3d40f;
    border-bottom: 2px solid #f3d40f;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #3c3c3c;
    vertical-align: middle;
}

th {
    background: #333;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

th.sortable {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

th.sortable:hover {
    background: #444;
}

th.sortable::after {
    content: ' \2195';
    opacity: 0.4;
    font-size: 0.9em;
    margin-left: 5px;
}

th.sortable.sorted-asc::after {
    content: ' \25B2';
    opacity: 1;
}

th.sortable.sorted-desc::after {
    content: ' \25BC';
    opacity: 1;
}

tbody tr:hover {
    background: #383838;
}

img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #444;
}

a {
    font-weight: bold;
    color: #61aeee;
    text-decoration: none;
    font-size: 16px;
}

a:hover {
    text-decoration: underline;
}