#ppalFondo {
  position: fixed; /* Fixes the GIF to the viewport */
  right: 0;
  bottom: 0;
  min-width: 100%; /* Ensures the GIF covers the full width */
  min-height: 100%; /* Ensures the GIF covers the full height */
  width: auto;
  height: auto;
  z-index: -100; /* Sends it to the very back, behind all other content */
  background-size: cover; /* Ensures the GIF covers the area without gaps */
  opacity: 0.2; /* Sets transparency: 0.6 means 60% opaque, so 40% transparent */
  object-fit: cover; /* Ensures the GIF scales correctly without distorting, cropping if needed */
  /* Optional: Adjust brightness or blur for better text readability */
  /* filter: brightness(0.8); */
  /* filter: blur(2px); */
}

.table-bold-col-1 tbody tr td:first-child {
    font-weight: bold;
  }