/* public/styles.css */
:root {
    --primary-color: #4A89DC;
    --secondary-color: #967ADC;
    --success-color: #A0D468;
    --warning-color: #FFCE54;
    --danger-color: #ED5565;
    --text-color: #333;
    --background-color: #F5F7FA;
    --border-color: #E6E9ED;
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
      'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }

  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }

  h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
  }

  .demo-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
  }

  .demo-section h2 {
    color: var(--primary-color);
    margin-top: 0;
  }

  #auth-button-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }

  #auth-status {
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    min-height: 20px;
  }

  .auth-status-success {
    background-color: #E8F5E9;
    color: #2E7D32;
  }

  .auth-status-error {
    background-color: #FFEBEE;
    color: #D32F2F;
  }

  .flow-log {
    background-color: var(--background-color);
    border-radius: 4px;
    padding: 10px;
  }

  #flow-steps li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
  }

  #flow-steps li.pending {
    color: #AAB2BD;
  }

  #flow-steps li.active {
    color: var(--primary-color);
    font-weight: bold;
  }

  #flow-steps li.completed {
    color: var(--success-color);
  }

  #flow-steps li.error {
    color: var(--danger-color);
  }

  .debug-console {
    background-color: #2A2D34;
    color: white;
    border-radius: 4px;
    padding: 10px;
    font-family: monospace;
    height: 200px;
    overflow-y: auto;
  }

  .debug-console .log {
    margin: 5px 0;
    padding: 5px 0;
    border-bottom: 1px solid #3A3D44;
  }

  .debug-console .info {
    color: #4FC1E9;
  }

  .debug-console .success {
    color: #A0D468;
  }

  .debug-console .error {
    color: #ED5565;
  }

  .demo-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .demo-controls button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
  }

  .demo-controls button:hover {
    opacity: 0.9;
  }
