/* Dark theme table styles */
.table {
    color: white;
    background-color: transparent;
}

.table th {
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background-color: transparent;
}

.table td {
    vertical-align: middle;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background-color: transparent;
}

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

/* Card styles for table containers */
.card {
    background-color: transparent;
}

.card-body {
    background-color: transparent;
}

/* Badge styles */
.badge {
    font-weight: 500;
}

/* Pagination styles */
.page-link {
    color: #6c757d;
}

.page-item.active .page-link {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Link styles */
.text-primary {
    text-decoration: none;
}

.text-primary:hover {
    text-decoration: underline;
} 