.elementor-116043 .elementor-element.elementor-element-3c90751{--display:flex;}/* Start custom CSS */.datos-gastos {
    width: 100%;
}

.registro-gasto {
    margin-bottom: 30px;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
}

.titulo-gasto {
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #ddd;
}

.campos-gasto {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.campo-gasto {
    padding: 12px;
    background: #f7f7f7;
    border-radius: 6px;
}

.etiqueta-gasto {
    font-weight: 700;
    margin-bottom: 5px;
}

.valor-gasto {
    color: #0066cc;
    word-break: break-word;
}

.fecha-gasto {
    margin-top: 18px;
    font-size: 13px;
    opacity: 0.7;
}

/* TABLET */
@media (max-width: 1024px) {
    .campos-gasto {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* CELULAR */
@media (max-width: 767px) {
    .campos-gasto {
        grid-template-columns: 1fr;
    }

    .registro-gasto {
        padding: 18px;
    }
}
.botones-gasto {
    display: flex;
    gap: 15px;
    margin-top: 18px;
    align-items: center;
}

.boton-editar-gasto {
    display: inline-block;
    padding: 9px 16px;
    background: #222;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.boton-eliminar-gasto {
    display: inline-block;
    padding: 9px 16px;
    background: #c62828;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.boton-editar-gasto:hover,
.boton-eliminar-gasto:hover {
    opacity: 0.85;
    color: #fff !important;
}/* End custom CSS */