/* Extracted from inline <style> blocks. Source hash: 978c2451a292a12d43a1fc4c77de15cb */
body {
      font-family: 'Open Sans', sans-serif;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .picker-container {
      background: white;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      max-width: 1200px;
      width: 100%;
    }
    .picker-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .picker-header h1 {
      color: #2c3e50;
      font-size: 2.5rem;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .picker-header p {
      color: #7f8c8d;
      font-size: 1.1rem;
    }
    .role-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }
    .role-card {
      background: #f8f9fa;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 24px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .role-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      border-color: #40a351;
      background: #f0fdf4;
    }
    .role-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #40a351 0%, #2d8a3f 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: white;
      font-size: 24px;
      font-weight: bold;
    }
    .role-card.consumer .role-icon { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
    .role-card.nca .role-icon { background: linear-gradient(135deg, #40a351 0%, #2d8a3f 100%); }
    .role-card.agency-cad .role-icon { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
    .role-card.agency-slbs .role-icon { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
    .role-card.agency-ntrc .role-icon { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
    .role-card.agency-nurc .role-icon { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
    .role-card.admin .role-icon { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); }
    .role-card.analyst .role-icon { background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%); }
    .role-card.guest .role-icon { background: linear-gradient(135deg, #64748b 0%, #475569 100%); }
    
    .role-title {
      color: #2c3e50;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .role-desc {
      color: #6c757d;
      font-size: 0.9rem;
      line-height: 1.4;
    }
    .section-divider {
      border-top: 2px solid #e9ecef;
      margin: 40px 0 30px;
      padding-top: 20px;
    }
    .section-title {
      color: #495057;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 20px;
      text-align: center;
    }
    .footer-note {
      text-align: center;
      color: #6c757d;
      font-size: 0.9rem;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid #dee2e6;
    }
