.data-table-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.table-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 12px;
}

.table-toolbar .search-box {
    position: relative;
    min-width: 250px;
}

.table-toolbar .search-box input {
    padding-left: 36px;
    border-radius: 10px;
    font-size: 0.85rem;
}

.table-toolbar .search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.table-toolbar .toolbar-actions {
    display: flex;
    gap: 8px;
}

.table {
    margin: 0;
    color: var(--text-primary);
}

.table thead th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.88rem;
    vertical-align: middle;
}

.table tbody tr:hover {
    background: var(--glass-bg-hover);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.table-actions .btn {
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 6px;
}

.table-actions .btn-outline-primary {
    color: var(--primary-light);
    border-color: rgba(79, 70, 229, 0.3);
}
.table-actions .btn-outline-primary:hover {
    background: rgba(79, 70, 229, 0.15);
    color: var(--primary-light);
}
.table-actions .btn-outline-danger {
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}
.table-actions .btn-outline-danger:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}
