/* Table styling */
.table-hover tbody tr {
    transition: all 0.2s;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.table thead th {
    border-bottom-width: 1px;
    font-weight: 600;
    color: #495057;
    background-color: #f8f9fa;
}

.table > :not(:first-child) {
    border-top: none;
}