

        .presupuesto-no-visto {
            animation: pulse 1s infinite alternate;
            background-color: #fffae6;
        }
        .presupuesto-consultado {
            font-size: 0.9em;
            color: #888;
            margin-left: 5px;
        }
        .presupuesto-actualizado {
            font-size: 0.9em;
            color: #d33;
            margin-left: 5px;
            font-weight: bold;
        }
        @keyframes pulse {
            from { background-color: #fffae6; }
            to { background-color: #fff; }
        }
