/*
  CG 2025-Jun-04
  A little bit of extra css for certain modules
  the core.css used to be the quote_generator.css
  Now we will use it elsewhere
*/

.fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;            /* use viewport height instead of % */
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);   /* semi-transparent black */
  overflow-y: auto;         /* enable vertical scrolling */
  overflow-x: hidden;       /* prevent horizontal scrolling */
}

/* Adding here for now */
/* Needed for our table animations */
.row-flash {
    background-color: #0882bb !important;
    transition: background-color 0.5s ease-out;
}