/* Form steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Error styling */
.field-error {
    border-bottom: 2px solid #ff0000 !important;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* Debug console styling */
#debug-console {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 10px;
    font-family: monospace;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999;
    display: none; /* Hide by default, show with ?debug=1 */
}

.progress-bar-container {
  width: 100%;
  background-color: #f1f1f1;
  height: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 100%;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: #48928C;
  border-radius: 5px;
  transition: width 0.3s ease-in-out;
}
