/* Estilos SOLO para la tabla de proyectos */
.tabla-proyectos {
    border-collapse: collapse;
    width: 80%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.tabla-proyectos th {
    background: #333;
    color: white;
    padding: 12px;
    text-align: center;
}

.tabla-proyectos td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.tabla-proyectos tr:nth-child(even) {
    background: #f2f2f2;
}

.tabla-proyectos tr:hover {
    background: #d9e7ff;
}

h2 {
    margin-bottom: 15px;
}
