
  :root {
    --primary-color: #232f3e;
    --secondary-color: #ff9900;
    --light-bg: #f8f8f8;
    --dark-text: #333;
    --light-text: #fff;
    --border-color: #ddd;
    --error-color: #d13212;
    --success-color: #1d8102;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  h1, h2, h3 {
    margin-bottom: 15px;
  }
  
  section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
  }
  
  .info-box {
    margin-bottom: 20px;
  }
  
  .info-box:last-child {
    margin-bottom: 0;
  }
  
  .prerequisites ul {
    padding-left: 20px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  input[type="text"],
  input[type="number"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
  }
  
  .form-actions {
    margin-top: 25px;
    text-align: right;
  }
  
  button {
    background-color: var(--secondary-color);
    color: var(--dark-text);
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
  }
  
  button:hover {
    background-color: #e88a00;
  }
  
  .credentials-container, .config-container {
    background-color: #f5f5f5;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
  }
  
  pre {
    white-space: pre-wrap;
    word-break: break-all;
    font-family: monospace;
    font-size: 14px;
  }
  
  .copy-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .copy-actions button {
    flex: 1;
    min-width: 150px;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-size: 14px;
  }
  
  .copy-actions button:hover {
    background-color: #344b6e;
  }
  
  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .spinner {
    border: 5px solid var(--border-color);
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  #error-message {
    background-color: var(--error-color);
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  
  footer {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 14px;
  }
  
  @media screen and (max-width: 768px) {
    .container {
      padding: 10px;
    }
    
    header {
      padding: 15px;
    }
    
    section {
      padding: 15px;
    }
    
    .form-actions {
      text-align: center;
    }
    
    button {
      width: 100%;
    }
  }