/* Futuristic fonts and colors */
body {
  font-family: 'Roboto', sans-serif; /* Update font family for a modern futuristic look */
  color: #00ffaa; /* Bright turquoise color */
  background-color: #0e0e1a; /* Dark background color */
}

/* Holographic effects */
.hologram-text {
  text-shadow: 0 0 10px rgba(0, 255, 170, 0.8); /* Update holographic text shadow */
  font-weight: 600; /* Adjust font weight for better readability */
}

/* Animated loading indicator */
#status {
  animation: pulse 1.5s infinite; /* Shorten animation duration for quicker feedback */
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* 3D hover effects */
#uploadLabel {
  transition: transform 0.5s ease-in-out; /* Slower transition for smoother effect */
}

#uploadLabel:hover {
  transform: rotateX(10deg) rotateY(5deg); /* Add Y-axis rotation for a more dynamic hover effect */
}

/* Additional futuristic styling */
/* Add your additional futuristic styling here */
