/* CSS extracted from templates\info\jobs.html */

:root {
            --primary: var(--brand-primary);
            --primary-dark: var(--brand-hover);
            --primary-light: var(--brand-primary-alpha);
            --accent: var(--status-warning);
            --text-dark: var(--text-primary);
            --text-muted: var(--text-secondary);
            --bg-light: var(--bg-primary);
            --white: var(--card-bg);
            --border: var(--border-color);
            --success: var(--status-success);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Header */
        .jobs-header {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .header-logo img {
            height: 40px;
        }

        .header-nav {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .header-nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.2s;
        }

        .header-nav a:hover {
            color: var(--primary);
        }

        .header-nav .btn-login {
            background: var(--primary);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 8px;
        }

        .header-nav .btn-login:hover {
            background: var(--primary-dark);
            color: var(--white);
        }

        /* Hero Section */
        .jobs-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 60px 24px;
            text-align: center;
            color: var(--white);
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .hero-content p {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 32px;
        }

        /* Search Form */
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
            background: var(--white);
            padding: 8px;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
        }

        .search-form input {
            flex: 1;
            padding: 14px 16px;
            border: none;
            font-size: 16px;
            outline: none;
            border-radius: 8px;
        }

        .search-form button {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 14px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s;
        }

        .search-form button:hover {
            background: var(--primary-dark);
        }

        /* Main Container */
        .jobs-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 32px 24px;
        }

        /* Filters Section */
        .filters-section {
            background: var(--white);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
        }

        .filters-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: flex-end;
        }

        .filter-group {
            flex: 1;
            min-width: 180px;
        }

        .filter-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .filter-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 14px;
            color: var(--text-dark);
            background: var(--white);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
        }

        .filter-group select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .filter-btn {
            padding: 12px 20px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .filter-btn:hover {
            background: var(--primary-dark);
        }

        .filter-btn.secondary {
            background: var(--bg-light);
            color: var(--text-dark);
            border: 1px solid var(--border);
        }

        .filter-btn.secondary:hover {
            background: var(--border);
        }

        /* Results Header */
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .results-count {
            font-size: 14px;
            color: var(--text-muted);
        }

        .results-count strong {
            color: var(--text-dark);
        }

        /* Jobs Grid */
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
        }

        /* Job Card */
        .job-card {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: var(--shadow);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid var(--border);
        }

        .job-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .job-card-header {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
        }

        .job-org-logo {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            object-fit: cover;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
        }

        .job-org-logo img {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            object-fit: cover;
        }

        .job-info {
            flex: 1;
        }

        .job-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .job-company {
            font-size: 14px;
            color: var(--text-muted);
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 12px;
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .job-meta-item i {
            color: var(--primary);
            font-size: 12px;
        }

        .job-description {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .job-tag {
            background: var(--primary-light);
            color: var(--primary);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }

        .job-tag.type {
            background: var(--status-warning-bg, rgba(255,193,7,0.12));
            color: var(--status-warning);
        }

        .job-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        .job-salary {
            font-weight: 600;
            color: var(--success);
            font-size: 14px;
        }

        .job-date {
            font-size: 13px;
            color: var(--text-muted);
        }

        .btn-view-job {
            background: var(--primary);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.2s;
        }

        .btn-view-job:hover {
            background: var(--primary-dark);
        }

        /* Empty State */
        .no-jobs {
            text-align: center;
            padding: 80px 24px;
            background: var(--white);
            border-radius: 12px;
            grid-column: 1 / -1;
        }

        .no-jobs i {
            font-size: 48px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .no-jobs h3 {
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .no-jobs p {
            color: var(--text-muted);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .pagination a,
        .pagination span {
            padding: 10px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .pagination a {
            background: var(--white);
            color: var(--text-dark);
            border: 1px solid var(--border);
            transition: all 0.2s;
        }

        .pagination a:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .pagination .current {
            background: var(--primary);
            color: var(--white);
        }

        /* Footer */
        .jobs-footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 48px 24px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-logo img {
            height: 36px;
            filter: brightness(0) invert(1);
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .jobs-header {
                padding: 12px 16px;
            }

            .header-nav {
                display: none;
            }

            .jobs-hero {
                padding: 40px 16px;
            }

            .hero-content h1 {
                font-size: 1.75rem;
            }

            .search-form {
                flex-direction: column;
            }

            .search-form button {
                width: 100%;
                justify-content: center;
            }

            .filters-row {
                flex-direction: column;
            }

            .filter-group {
                width: 100%;
            }

            .jobs-grid {
                grid-template-columns: 1fr;
            }

            .results-header {
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
