.table-responsive{ 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    border-radius: 8px;
}

table.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table.table thead tr {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
}

table.table thead th {
    color: #fff;
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    border: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table.table thead th:first-child {
    border-radius: 8px 0 0 0;
}

table.table thead th:last-child {
    border-radius: 0 8px 0 0;
}

table.table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #eee;
}

table.table tbody tr:hover {
    background-color: rgba(100, 181, 246, 0.08);
}

table.table tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

table.table tbody tr:nth-child(even):hover {
    background-color: rgba(100, 181, 246, 0.1);
}

table.table td {
    padding: 12px 16px;
    vertical-align: middle;
    color: #444;
}

table.table.is-striped tbody tr:not(.is-selected):nth-child(even) {
    background-color: rgba(0, 0, 0, 0.03);
}

table.table.is-hoverable tbody tr:not(.is-selected):hover {
    background-color: rgba(100, 181, 246, 0.1);
}

table.table.is-bordered td,
table.table.is-bordered th {
    border: 1px solid #e0e0e0;
}

table.table.is-narrow td {
    padding: 8px 12px;
}

table.table.is-fullwidth {
    width: 100%;
}

table.table .is-actions {
    white-space: nowrap;
    width: 1%;
}

table.table .tag {
    font-size: 12px;
    padding: 0 8px;
    height: 24px;
    line-height: 22px;
}

table.table tbody tr.is-selected td {
    background-color: rgba(100, 181, 246, 0.15) !important;
}

@media (max-width: 768px) {
    table.table {
        font-size: 13px;
    }
    
    table.table thead th,
    table.table td {
        padding: 10px 12px;
    }
    
    .table-responsive {
        border-radius: 6px;
        border: 1px solid #e0e0e0;
    }
}