 /* Rio Hondo Course Generator - Scoped Styles */
    .rhc-generator {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

      min-height: 100vh;
      padding: 20px;
      margin: 0;
      box-sizing: border-box;
    }

    .rhc-generator *,
    .rhc-generator *::before,
    .rhc-generator *::after {
      box-sizing: border-box;
    }

    .rhc-generator .rhc-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .rhc-generator .rhc-header {
      text-align: center;
      margin-bottom: 30px;
      color: white;
    }

    .rhc-generator .rhc-header h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      margin-top: 0;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .rhc-generator .rhc-header p {
      font-size: 1.1rem;
      opacity: 0.9;
      margin: 0;
    }

    .rhc-generator .rhc-form-card,
    .rhc-generator .rhc-result-card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      margin-bottom: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      backdrop-filter: blur(10px);
    }

    .rhc-generator .rhc-form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-bottom: 25px;
    }

    .rhc-generator .rhc-form-group {
      display: flex;
      flex-direction: column;
    }

    .rhc-generator .rhc-form-group label {
      font-weight: 600;
      margin-bottom: 8px;
      color: #333;
      font-size: 0.95rem;
    }

    .rhc-generator .rhc-form-control {
      padding: 12px 16px;
      border: 2px solid #e1e5e9;
      border-radius: 8px;
      font-size: 14px;
      transition: all 0.3s ease;
      background: #fafbfc;
      font-family: inherit;
    }

    .rhc-generator .rhc-form-control:focus {
      outline: none;
      border-color: #667eea;
      background: white;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .rhc-generator .rhc-form-control[multiple] {
      min-height: 120px;
    }

    .rhc-generator .rhc-radio-group {
      display: flex;
      gap: 15px;
      margin-top: 8px;
    }

    .rhc-generator .rhc-radio-item {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }

    .rhc-generator .rhc-radio-item input[type="radio"] {
      width: 18px;
      height: 18px;
      accent-color: #667eea;
      margin: 0;
    }

    .rhc-generator .rhc-radio-item label {
      cursor: pointer;
      margin-bottom: 0;
      font-weight: normal;
    }

    .rhc-generator .rhc-checkbox-group {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 10px;
      margin-top: 8px;
    }

    .rhc-generator .rhc-checkbox-item {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }

    .rhc-generator .rhc-checkbox-item input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: #667eea;
      margin: 0;
    }

    .rhc-generator .rhc-checkbox-item label {
      cursor: pointer;
      margin-bottom: 0;
      font-weight: normal;
    }

    .rhc-generator .rhc-result-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .rhc-generator .rhc-result-header h2 {
      color: #333;
      font-size: 1.4rem;
      font-weight: 600;
      margin: 0;
    }

    .rhc-generator .rhc-preview-btn {
      background: #28a745;
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.3s ease;
      font-family: inherit;
    }

    .rhc-generator .rhc-preview-btn:hover {
      background: #218838;
    }

    .rhc-generator .rhc-url-output {
      background: #f8f9fa;
      border: 2px dashed #dee2e6;
      border-radius: 8px;
      padding: 20px;
      font-family: 'Monaco', 'Consolas', monospace;
      font-size: 13px;
      word-break: break-all;
      cursor: pointer;
      transition: all 0.3s ease;
      min-height: 80px;
      display: flex;
      align-items: center;
    }

    .rhc-generator .rhc-url-output:hover {
      background: #e9ecef;
      border-color: #adb5bd;
    }

    .rhc-generator .rhc-url-output.rhc-empty {
      color: #6c757d;
      font-style: italic;
      justify-content: center;
    }

    .rhc-generator .rhc-copy-alert {
      background: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
      border-radius: 6px;
      padding: 12px;
      margin-top: 15px;
      text-align: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .rhc-generator .rhc-copy-alert.rhc-show {
      opacity: 1;
    }

    .rhc-generator .rhc-section-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #495057;
      margin-bottom: 15px;
      padding-bottom: 8px;
      border-bottom: 2px solid #e9ecef;
    }

    @media (max-width: 768px) {
      .rhc-generator .rhc-header h1 {
        font-size: 2rem;
      }
      
      .rhc-generator .rhc-form-grid {
        grid-template-columns: 1fr;
      }
      
      .rhc-generator .rhc-form-card,
      .rhc-generator .rhc-result-card {
        padding: 20px;
      }
    }