
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      margin: 0;
      padding: 0;
      min-height: 100vh;
    }
    .container {
      max-width: 100vw !important;
      width: 100% !important;
      box-sizing: border-box !important;
      margin: 20px auto;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      padding: 32px 24px 24px 24px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    h2 {
      text-align: center;
      margin-bottom: 24px;
      color: #2c3e50;
      font-weight: 800;
      font-size: 2.2rem;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .user-list {
      list-style: none;
      padding: 0;
    }
    .user-item {
      margin-bottom: 12px;
      padding: 16px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      background: #fff;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .user-item:hover {
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      border-color: #2196F3;
    }
    .user-info {
      display: flex;
      align-items: center;
      flex: 1;
    }
    .user-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #2196F3;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 16px;
      color: white;
      font-weight: bold;
      font-size: 1.2rem;
    }
    .user-details {
      flex: 1;
    }
    .user-name {
      font-weight: bold;
      font-size: 1.1rem;
      color: #222;
      margin-bottom: 4px;
    }
    .user-work {
      color: #2196F3;
      font-size: 0.9rem;
      margin-bottom: 2px;
    }
    .user-location {
      color: #666;
      font-size: 0.8rem;
    }
    .user-experience {
      color: #888;
      font-size: 0.8rem;
    }
    
    /* Rating Styles */
    .rating-container {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-top: 5px;
    }
    
    .rating-stars {
      color: #FFD700;
      font-size: 0.9rem;
    }
    
    .rating-text {
      color: #666;
      font-size: 0.8rem;
      font-weight: 500;
    }
    
    .review-count {
      color: #999;
      font-size: 0.75rem;
    }
    
    .top-rated-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background: linear-gradient(45deg, #FF6B35, #FF8E53);
      color: white;
      border-radius: 50%;
      width: 25px;
      height: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }
    
    .top-rated-card {
      border: 2px solid #FF6B35 !important;
      position: relative;
    }
    
    .top-rated-card .card-body {
      background: linear-gradient(135deg, #fff 0%, #fff8f5 100%);
    }
    .view-btn {
      background: #2196F3;
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.9rem;
      transition: background 0.2s;
    }
    .view-btn:hover {
      background: #1976D2;
    }
    .loading, .error {
      text-align: center;
      color: #888;
      margin: 30px 0;
      font-size: 1.1rem;
    }
    .error {
      color: #d32f2f;
    }
    .no-users {
      text-align: center;
      color: #666;
      margin: 40px 0;
      font-size: 1.1rem;
    }
    .back-btn {
      background: #666;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      cursor: pointer;
      margin-bottom: 20px;
      font-size: 1rem;
    }
    .back-btn:hover {
      background: #555;
    }
    .loading-spinner {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid #f3f3f3;
      border-top: 3px solid #2196F3;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-right: 10px;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .loading-text {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    /* Filter Section (reuse dropdown.js) */
    .filter-section {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      margin-bottom: 32px;
      align-items: center;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
      padding: 28px 28px 18px 28px;
      border: 2px solid rgba(102, 126, 234, 0.1);
      position: relative;
      animation: fadeIn 0.7s cubic-bezier(.4,0,.2,1);
      min-height: 80px;
      backdrop-filter: blur(10px);
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .filter-section .filter-icon {
      font-size: 1.7rem;
      color: #667eea;
      margin-right: 14px;
      margin-left: 2px;
      opacity: 0.8;
    }
    .filter-section label {
      font-weight: 600;
      color: #2c3e50;
      margin-right: 8px;
      display: flex;
      align-items: center;
      font-size: 1.13rem;
      letter-spacing: 0.01em;
      opacity: 0.85;
    }
    .filter-section label i {
      margin-right: 6px;
      color: #667eea;
      font-size: 1.15rem;
      opacity: 0.7;
    }
    .filter-section select {
      padding: 12px 44px 12px 18px;
      border-radius: 12px;
      border: 2px solid rgba(102, 126, 234, 0.2);
      font-size: 1.13rem;
      min-width: 180px;
      background: rgba(255, 255, 255, 0.9) url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/icons/caret-down-fill.svg') no-repeat right 18px center/20px 20px;
      color: #2c3e50;
      box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1);
      transition: all 0.3s ease;
      appearance: none;
      outline: none;
      font-weight: 500;
      margin-right: 2px;
      backdrop-filter: blur(10px);
    }
    .filter-section select:focus, .filter-section select:hover {
      border: 2px solid #667eea;
      background-color: rgba(255, 255, 255, 1);
      box-shadow: 0 6px 24px rgba(102, 126, 234, 0.2);
      color: #2c3e50;
      transform: translateY(-2px);
    }
    #clearFilters {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 12px;
      padding: 13px 34px;
      font-size: 1.13rem;
      cursor: pointer;
      font-weight: 700;
      box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
      margin-left: 0;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
    }
    #clearFilters i {
      font-size: 1.2rem;
      color: white;
      opacity: 0.9;
    }
    #clearFilters:hover {
      background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
      color: white;
      box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
      transform: translateY(-2px);
    }
    @media (max-width: 900px) {
      .filter-section { flex-wrap: wrap; gap: 18px; padding: 18px 8px 12px 8px; }
      .filter-section select, #clearFilters { width: 100%; min-width: 0; }
      .filter-section label { margin-bottom: 2px; }
      #clearFilters {
        padding: 10px 20px;
        font-size: 1rem;
      }
      .d-none.d-md-block .row {
        flex-wrap: wrap;
      }
      .d-none.d-md-block .col-lg-2:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 10px;
      }
    }
    @media (max-width: 600px) {
      .filter-section { flex-direction: column; gap: 18px; padding: 14px 4px 10px 4px; }
      .filter-section select, #clearFilters { width: 100%; min-width: 0; }
      .filter-section label { margin-bottom: 2px; }
      #clearFilters {
        padding: 8px 16px;
        font-size: 0.9rem;
      }
      .d-none.d-md-block .row {
        flex-direction: column;
      }
      .d-none.d-md-block .col-lg-2:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 10px;
      }
    }
    .search-box-container { display: flex; justify-content: center; margin: 32px 0 24px 0; }
    .search-box {
      width: 340px; max-width: 90vw; padding: 16px 22px; border-radius: 16px; border: 2px solid rgba(102, 126, 234, 0.2);
      font-size: 1.18rem; color: #2c3e50; background: rgba(255, 255, 255, 0.9); box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1);
      outline: none; font-weight: 500; letter-spacing: 0.01em; cursor: pointer;
      transition: all 0.3s ease; backdrop-filter: blur(10px);
    }
    .search-box:focus, .search-box:hover { border: 2px solid #667eea; background: rgba(255, 255, 255, 1); transform: translateY(-2px); }
    .search-modal {
      display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100vw; height: 100vh;
      background: rgba(102, 126, 234, 0.1); justify-content: center; align-items: center;
    }
    .search-modal-content {
      background: rgba(255, 255, 255, 0.95); border-radius: 20px; padding: 36px 32px 28px 32px; box-shadow: 0 8px 40px rgba(102, 126, 234, 0.2);
      min-width: 320px; max-width: 95vw; min-height: 180px; position: relative; display: flex; flex-direction: column; align-items: center;
      animation: fadeIn 0.5s cubic-bezier(.4,0,.2,1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .close-modal {
      position: absolute; top: 16px; right: 22px; font-size: 2rem; color: #667eea; cursor: pointer; opacity: 0.7; transition: color 0.2s, opacity 0.2s;
    }
    .close-modal:hover { color: #2c3e50; opacity: 1; }
    .search-step { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .search-step label { font-weight: 600; color: #2c3e50; font-size: 1.13rem; margin-bottom: 12px; display: flex; align-items: center; }
    .search-step label i { margin-right: 8px; color: #667eea; font-size: 1.18rem; opacity: 0.7; }
    .search-step select {
      padding: 12px 44px 12px 18px; border-radius: 12px; border: 2px solid rgba(102, 126, 234, 0.2); font-size: 1.13rem; min-width: 220px;
      background: rgba(255, 255, 255, 0.9) url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/icons/caret-down-fill.svg') no-repeat right 18px center/20px 20px;
      color: #2c3e50; box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1); transition: all 0.3s ease;
      appearance: none; outline: none; font-weight: 500; margin-bottom: 18px; backdrop-filter: blur(10px);
    }
    .search-step select:focus, .search-step select:hover { border: 2px solid #667eea; background-color: rgba(255, 255, 255, 1); color: #2c3e50; transform: translateY(-2px); }
    .next-btn, .search-btn {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border: none; border-radius: 12px;
      padding: 13px 34px; font-size: 1.13rem; cursor: pointer; font-weight: 700; box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
      margin-top: 8px; transition: all 0.3s ease;
    }
    .next-btn:hover, .search-btn:hover { background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%); color: white; box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3); transform: translateY(-2px); }
    @media (max-width: 600px) {
      .search-modal-content { padding: 18px 6vw 18px 6vw; min-width: 0; }
      .search-step select { min-width: 0; width: 100%; }
    }
    /* Desktop custom style */
    @media (min-width: 601px) {
      .dropdown-menu .form-select {
        padding: 14px 18px;
        font-size: 1.1rem;
        border-radius: 12px;
        border: 2px solid rgba(102, 126, 234, 0.2);
        background: rgba(255, 255, 255, 0.9) url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/icons/caret-down-fill.svg') no-repeat right 18px center/20px 20px;
        color: #2c3e50;
        box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1);
        font-weight: 500;
        margin-bottom: 12px;
        appearance: none;
        outline: none;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
      }
      .dropdown-menu .form-select:focus, .dropdown-menu .form-select:hover {
        border: 2px solid #667eea;
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 0 6px 24px rgba(102, 126, 234, 0.2);
        transform: translateY(-2px);
      }
    }

    /* Mobile: pure native select, no custom style */
    @media (max-width: 600px) {
      .dropdown-menu {
        background: #fff !important;
        box-shadow: none !important;
        border-radius: 10px !important;
        max-height: 60vh !important;
        overflow-y: auto !important;
        min-width: 0 !important;
        width: 100% !important;
        padding: 15px !important;
        z-index: 1055 !important;
        font-family: inherit !important;
        font-size: 1rem !important;
      }
      .dropdown-menu .form-select {
        width: 100% !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
        word-break: break-word !important;
        white-space: normal !important;
        padding: 8px 10px !important;
        margin-bottom: 12px !important;
        border-radius: 6px !important;
        border: 1.5px solid #b3d8fd !important;
        background: #fff !important;
        color: #222 !important;
        appearance: auto !important;
        background-image: none !important;
        box-shadow: none !important;
        outline: auto !important;
        position: static !important;
        z-index: 1 !important;
        text-align: left !important;
      }
      .dropdown-menu .form-select option {
        color: #222 !important;
        background: #fff !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
        min-height: 2em !important;
        word-break: break-word !important;
        white-space: normal !important;
        text-align: left !important;
      }
      .dropdown-menu label {
        font-size: 1rem !important;
        margin-bottom: 4px !important;
      }
      .dropdown, .dropdown-menu, .dropdown .row, .dropdown .col-12 {
        overflow: visible !important;
      }
      .dropdown-menu .row {
        gap: 8px !important;
      }
      .dropdown-menu .col-12 {
        margin-bottom: 8px !important;
      }
    }
 