.italy-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.bar {
  width: 100%;
  height: 33.333vh;
  position: relative;
  animation: slideLeft 1.2s ease forwards;
}

/* Colors of the Italian flag */
.green { background: #009246; animation-delay: 0s; }
.white { background: #ffffff; animation-delay: 0.2s; }
.red { background: #ce2b37; animation-delay: 0.4s; }

/* Slide animation */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-120%);
  }
}

/* Hide loader after animation */
.italy-loader {
  animation: hideLoader 1.8s forwards;
}

@keyframes hideLoader {
  0%, 90% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  font-size: 16px;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* Base button style */
.pdf-download {
  display: inline-block;
  padding: 12px 20px;          /* Adjust size */
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  color: white;                 /* White text */
  background-color: black;      /* Black background */
  text-decoration: none;        /* No underline */
  border: 2px solid white;      /* White outline */
  border-radius: 0;             /* Perfect rectangle */
  text-align: center;
  transition: all 0.3s ease;    /* Smooth hover effect */
  -webkit-text-stroke: 1px white; /* White outline on text */
}

/* Hover effect */
.pdf-download:hover {
  color: black;               /* Red text */
  background-color: #ce2b37;    /* Red background */
  border-color: #ce2b37;        /* Red border */
  -webkit-text-stroke: 1px #ce2b37; /* Red outline on text */
}

body {
    background-color: #000000;
}