/* Estilos para la paginación */
.pagination {
    margin-bottom: 0;
}

.page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.page-link {
    color: #007bff;
}

.page-link:hover {
    color: #0056b3;
}

/* Estilos para las tablas */
.table-responsive {
    border-radius: 0.25rem;
}

.table thead th {
    border-top: none;
    background-color: #343a40;
    color: white;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

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

/* Estilos para los botones de filtro */
.btn-outline-primary, .btn-outline-warning, .btn-outline-info, 
.btn-outline-success, .btn-outline-secondary {
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Estilos para los badges */
.badge {
    padding: 0.4em 0.6em;
}

.badge-primary {
    background-color: #007bff;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-info {
    background-color: #17a2b8;
}

.badge-success {
    background-color: #28a745;
} 