/* ====== CSS FOR app/views/public/trabajadores.php ====== */

        .trab-page { max-width: 720px; margin: 0 auto; padding: 20px 16px; padding-top: 100px; }
        
        /* Sponsored Category Ads Styling */
        .cg-category-ads-section {
            margin-bottom: 24px;
            padding: 20px;
            background: linear-gradient(135deg, #f0fdf4, #fbf7ff);
            border: 1.5px dashed #10b981;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.04);
        }
        .cg-ad-badge {
            font-size: 10px;
            font-weight: 800;
            color: #047857;
            background: #d1fae5;
            border: 1px solid #a7f3d0;
            padding: 3px 10px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 12px;
        }
        .cg-ad-card-premium {
            background: #fff;
            border-radius: 16px;
            padding: 18px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.01);
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
        }
        .cg-ad-card-premium-header {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .cg-ad-card-premium-avatar {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #10b981, #059669);
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 1.5px solid #fff;
            box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
        }
        .cg-ad-card-premium-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .cg-ad-card-premium-name {
            font-size: 15px;
            font-weight: 700;
            color: #1e293b;
            margin: 0;
        }
        .cg-ad-card-premium-type {
            font-size: 12px;
            color: #10b981;
            font-weight: 600;
        }
        .cg-ad-card-premium-desc {
            font-size: 13px;
            color: #475569;
            margin: 0;
            line-height: 1.5;
        }
        .cg-ad-card-premium-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 12px;
            color: #64748b;
            font-weight: 600;
        }
        .trab-back {
            display: inline-flex; align-items: center; gap: 6px;
            color: #64748b; text-decoration: none; font-size: 14px; font-weight: 600;
            margin-bottom: 16px; background: white; padding: 8px 16px; border-radius: 20px; box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }
        .trab-back:hover { color: #10b981; }
        .trab-title { font-size: 26px; font-weight: 800; color: #1e293b; margin: 0 0 4px; }
        .trab-subtitle { font-size: 15px; color: #64748b; margin: 0 0 24px; }
        .trab-count { color: #10b981; font-weight: 800; }

        /* Worker Cards */
        .trab-list { display: flex; flex-direction: column; gap: 16px; }
        .trab-card {
            background: #fff; border-radius: 20px; padding: 20px;
            box-shadow: 0 4px 10px -5px rgba(0,0,0,0.05);
            border: 1px solid #f1f5f9;
            transition: all 0.3s;
        }
        .trab-card:hover {
            border-color: #10b981;
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.08);
            transform: translateY(-2px);
        }

        .trab-card-header { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
        .trab-card-avatar {
            width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0;
            background: linear-gradient(135deg, #10b981, #059669);
            color: #fff; font-size: 24px; font-weight: 800;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
            border: 2px solid #f0fdf4; box-shadow: 0 4px 10px rgba(16,185,129,0.2);
        }
        .trab-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .trab-card-name { font-size: 18px; font-weight: 800; color: #1e293b; margin: 0 0 4px; }
        .trab-card-service { font-size: 13px; color: #10b981; font-weight: 700; background: #ecfdf5; display: inline-block; padding: 4px 8px; border-radius: 10px; }
        .trab-card-badges { display: flex; gap: 6px; margin-top: 8px; }
        .trab-badge {
            font-size: 10px; font-weight: 800; padding: 4px 10px;
            border-radius: 50px; text-transform: uppercase;
        }
        .trab-badge.v { background: #dbeafe; color: #2563eb; }
        .trab-badge.d { background: #fef3c7; color: #d97706; }

        /* Info chips inline */
        .trab-card-info {
            display: flex; flex-wrap: wrap; gap: 8px;
            margin-bottom: 16px;
        }
        .trab-chip {
            display: inline-flex; align-items: center; gap: 6px;
            font-size: 13px; color: #475569; font-weight: 600;
            background: #f8fafc; padding: 6px 12px; border-radius: 10px;
        }
        .trab-chip i, .trab-chip svg { width: 14px; height: 14px; color: #10b981; }

        /* Actions */
        .trab-card-actions { display: flex; gap: 10px; }
        .trab-btn {
            flex: 1; padding: 12px; border-radius: 12px; text-align: center;
            text-decoration: none; font-size: 14px; font-weight: 700;
            transition: all 0.3s;
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .trab-btn-primary {
            background: #10b981; color: #fff; box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
        }
        .trab-btn-primary:hover { background: #059669; transform: translateY(-1px); box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3); }
        .trab-btn-secondary {
            background: #25D366; color: #fff; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
        }
        .trab-btn-secondary:hover { background: #20bd5a; transform: translateY(-1px); box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3); }

        /* Empty */
        .trab-empty {
            text-align: center; padding: 60px 20px;
            background: #fff; border-radius: 20px; box-shadow: 0 4px 10px -5px rgba(0,0,0,0.05);
        }
        .trab-empty h2 { font-size: 20px; font-weight: 800; color: #1e293b; margin-bottom: 8px; }
        .trab-empty p { font-size: 15px; color: #64748b; margin-bottom: 24px; }
    
