/* Hide all steps initially */
.form-step {
    display: none;
}
.active {
    display: block;
}
/* Fun Message Box */
.fun-message {
    background-color: #F9CB43; /* Bright yellow */
    color: #4B4B4B;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}
nav .nav-links a {
  display: inline-block;
  margin-right: 1.5rem;
}
.dot-loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #facc15; /* yellow-400 */
    animation: dot-pulse 0.8s infinite ease-in-out;
  }
  
  @keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
  }