/* Ezozo Theme Styles */
        body {
            font-family: arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
            color: #202124;
        }
        
        /* Header Styles */
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            width: auto;
            margin-right: 10px;
        }
        
        .logo span {
            color: #202124;
            font-size: 22px;
            font-weight: 400;
        }
        
        .header-nav {
            display: flex;
            align-items: center;
        }
        
        .header-nav a {
            color: #202124;
            text-decoration: none;
            margin-left: 15px;
            font-size: 13px;
        }
        
        .header-nav a:hover {
            text-decoration: underline;
        }
        
        .sign-in-btn {
            background-color: #4285f4;
            color: white;
            padding: 7px 15px;
            border-radius: 4px;
            font-weight: 500;
        }
        
        .sign-in-btn:hover {
            background-color: #356ac3;
            text-decoration: none;
        }
        
        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .page-title {
            text-align: center;
            margin: 30px 0;
            color: #202124;
        }
        
        /* Search Bar */
        .search-container {
            max-width: 600px;
            margin: 20px auto 40px;
            position: relative;
        }
        
        .search-box {
            display: flex;
            align-items: center;
            border: 1px solid #dfe1e5;
            border-radius: 24px;
            height: 44px;
            margin: 0 auto;
            width: 100%;
        }
        
        .search-box:hover {
            box-shadow: 0 1px 6px rgba(32,33,36,.28);
            border-color: rgba(223,225,229,0);
        }
        
        .search-box i {
            color: #9aa0a6;
            padding: 0 15px;
        }
        
        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            font-size: 16px;
        }
        
        /* Filter Panel */
        .filter-panel {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .filter-panel h3 {
            margin-top: 0;
            color: #202124;
        }
        
        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #202124;
        }
        
        .filter-group select {
            width: 100%;
            padding: 8px;
            border: 1px solid #dadce0;
            border-radius: 4px;
            background-color: white;
        }
        
        .filter-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            cursor: pointer;
            font-weight: 500;
        }
        
        .btn-primary {
            background-color: #4285f4;
            color: white;
            border: none;
        }
        
        .btn-primary:hover {
            background-color: #356ac3;
        }
        
        /* User Grid */
        .user-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .user-card {
            background-color: white;
            border: 1px solid #dadce0;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
            transition: box-shadow 0.2s;
        }
        
        .user-card:hover {
            box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
        }
        
        .user-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: block;
            object-fit: cover;
        }
        
        .user-info {
            text-align: center;
        }
        
        .user-name {
            margin: 0 0 5px;
            color: #202124;
            font-size: 16px;
        }
        
        .user-location {
            margin: 0 0 5px;
            color: #5f6368;
            font-size: 14px;
        }
        
        .user-profiles {
            margin: 0 0 10px;
            color: #5f6368;
            font-size: 14px;
        }
        
        .view-profile {
            color: #4285f4;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }
        
        .view-profile:hover {
            text-decoration: underline;
        }
        
        /* No Results */
        .no-results {
            text-align: center;
            padding: 40px 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        
        .no-results h3 {
            color: #202124;
            margin-bottom: 10px;
        }
        
        .no-results p {
            color: #5f6368;
            margin-bottom: 20px;
        }
        
        /* Footer */
        footer {
            background-color: #f2f2f2;
            border-top: 1px solid #dadce0;
        }
        
        .footer-links {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
        }
        
        .footer-links a {
            color: #70757a;
            text-decoration: none;
            font-size: 14px;
            margin: 0 15px;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 15px 20px;
            color: #70757a;
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: #70757a;
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* AI Badge */
        .ai-badge {
            display: inline-block;
            background-color: #ff9800;
            color: white;
            font-size: 12px;
            padding: 3px 6px;
            border-radius: 4px;
            margin-left: 5px;
            font-weight: 500;
        }
