.table-wrapper {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.table-wrapper thead tr {
    background-image: linear-gradient(33deg, #0c6fc1, #0c0c2d);
    color: #fff;
    user-select: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.table-wrapper thead tr th {
    padding: 10px 15px;
    text-align: left;
}

.table-wrapper thead tr th:first-child {
    border-top-left-radius: 10px;
}
.table-wrapper thead tr th:last-child {
    border-top-right-radius: 10px;
}

.table-wrapper tbody tr:nth-child(odd) {
    background-color: #fff;
}

.table-wrapper tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

.table-wrapper tbody {
    background-color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.table-wrapper tbody tr td {
    padding: 6px 10px;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.table-wrapper tbody tr:last-child td {
    border-bottom: none;
}

.table-wrapper tbody tr:hover {
    background-color: #f9f9f9;
}

.table-wrapper .ban-duration {
    background-color: #f8d7da;
    color: #a00;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.9em;
}

.table-wrapper .ban-duration.expired {
    text-decoration: line-through;
    color: #425739;
    background-color: #b2edab;
}