/* Estilos adicionales para la tabla */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.styled-table th,
.styled-table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

.styled-table th {
    background-color: #f2f2f2;
}

/* Estilos para los valores positivos y negativos */
.positive {
    color: green;
}

.negative {
    color: red;
}

/* Estilos para el botón de eliminar y exportar */
.actions {
    text-align: center;
}

.actions button {
    margin: 5px;
    padding: 5px 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.actions button:hover {
    background-color: #f2f2f2;
}
