.rowRojo { background-color: chartreuse !important; }

@keyframes parpadeo {
    0% { background-color: red; }
    50% { background-color: white; }
    100% { background-color: red; }
  }
  
  blinkLabel {
    display: inline-block;
    padding: 10px;
    background-color: red;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    animation: parpadeo 1s infinite; /* Puedes ajustar la duración del parpadeo aquí */
  }

  table{
    width: 500px; /* Tamaño fijo en píxeles */
  }