
/* Ban Table */
.ban-table {
    width: 100%;
    border-collapse: collapse;
}

.ban-table th,
.ban-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ban-table th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #ff9900;
}

.ban-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Recent bans highlighting */
.ban-table tr.recent-ban td {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ff6666;
}