/* css/final-results.css - Style dla final results overlay */

#final-results-wrap {
  position: fixed;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  /* width ustawiane przez PHP inline style */
  z-index: 9999;
  pointer-events: none;
  
  /* Animacja - transition ustawiany przez settings-manager.js */
  display: none;
  opacity: 0;
}

#final-results-wrap.show {
  opacity: 1;
}

/* Obrazek tła */
#final-results-wrap .overlay {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.45));
}

/* SVG z tekstami */
#final-results-wrap .comp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Teksty SVG */
#final-results-wrap .t {
  font-family: 'Montserrat', sans-serif;
}