/* Archivo CSS para la tabla y filtros de proyectos */
.proyectos-filtros {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}
.tabla-proyectos {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.tabla-proyectos th, .tabla-proyectos td {
    border: 1px solid #e0e0e0;
    padding: 8px;
    text-align: left;
}
.tabla-proyectos th {
    background: #01B500;
    color: #fff;
}

.tabla-proyectos tbody tr:nth-child(odd) {
    background: rgba(1, 181, 0, 0.2);
}
.tabla-proyectos tbody tr:nth-child(even) {
    background: #fff;
}
.paginacion {
    text-align: center;
    margin-bottom: 20px;
}
.pagina-btn {
    background: #4caf50;
    color: #fff;
    border: none;
    padding: 6px 12px;
    margin: 0 2px;
    cursor: pointer;
    border-radius: 3px;
}
.pagina-btn.active {
    background: #388e3c;
}
