.home-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;          /* anchor to bottom */
  height: 0;          /* start collapsed */
  background: #003298;   /* same as header bg */
  animation: fillUp 1s ease-in-out forwards;
  pointer-events: none;   /* don't block clicks */
  z-index: 20;
}

@keyframes fillUp {
  from { height: 100%; }
  to   { height: 0%; }   /* grows bottom -> top */
}

#root{
    overflow-x: hidden;
}

.invoice-pdf {
  width: 800px !important;
  max-width: 800px !important;
  z-index: -1;
  background: #fff;
}

.invoice-pdf .w-1\/2 {
  width: 50% !important; /* force two-column layout */
}

.invoice-pdf table {
  width: 100% !important;
  border-collapse: collapse;
}
