@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

.progress-container {
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  border-radius: 5px;
}

.progress-bar {
  position: absolute;
  height: 100%;
  width: 0%;
  transition: width 1.5s ease-in-out !important;
}

  
  .accreditation-progress-message {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-style: italic;
    border: 1px solid #ddd;
  }
  
  .accreditation-debug-block {
    border: 1px solid #ddd;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    font-family: monospace;
  }
  
  .accreditation-debug-block h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }
  
  .debug-content {
    white-space: pre-wrap;
    font-size: 14px;
    color: #666;
  }
  