
        :root {
            --primary: #964900;
            --primary-container: #f58220;
            --secondary: #00629e;
            --background: #f9f9fc;
            --on-background: #2b2e31;
            --surface-container-lowest: #ffffff;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --blue-900: #1e3a8a;
            --gutter: 24px;
            --margin-page: 10px;
        }

        /* body {
            background-color: var(--background);
            color: var(--on-background);
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            margin: 0;
        } */

        body{
            font-size: 14px !important;
            color: var(--on-background);
        }

        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
            /* Increased to ensure enough gutter on mobile */
        }

        /* Typography */
        .display-lg {
            font-size: 48px;
            line-height: 1.2;
            font-weight: 800;
            color: var(--secondary);
        }

        .headline-md {
            font-size: 24px;
            line-height: 1.3;
            font-weight: 700;
        }

        .headline-sm {
            font-size: 18px;
            line-height: 1.4;
            font-weight: 600;
        }

        .body-lg {
            font-size: 16px;
            line-height: 1.6;
            font-weight: 400;
        }

        .body-sm {
            font-size: 14px;
            line-height: 1.5;
            font-weight: 400;
        }

        .label-bold {
            font-size: 12px;
            line-height: 1;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            display: inline-block;
            vertical-align: middle;
            line-height: 1;
        }

        /* Layout & Components */
        .main-wrapper {
            padding-top: 12px;
            padding-bottom: 24px;
        }

        @media (min-width: 992px) {
            .main-wrapper {
                padding-top: var(--margin-page);
                padding-bottom: var(--margin-page);
            }
        }

        .sidebar-filters {
            background-color:#ffffff;
            border: 1px solid var(--slate-200);
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 24px;
            position: relative;
            z-index: 100;            
        }

        #divCmbFiltroTecno {
            z-index: 1000 !important;
        }

        @media (min-width: 992px) {
            .sidebar-filters {
                position: sticky;
                top: 80px;
                max-width: 320px;
            }
        }

        .panel-card {
            background-color: #ffffff;
            border: 1px solid var(--slate-200);
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 10px;
            transition: all 0.2s ease;
        }

        @media (min-width: 768px) {
            .panel-card {
                padding: 10px;
            }
        }

        .panel-card:hover {
            box-shadow: 0 8px 30px rgba(0, 98, 158, 0.06);
        }



        .job-card {
            background-color: #ffffff;
            border: 1px solid var(--slate-200);
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 16px;
            transition: all 0.2s ease;
            position: relative;
            /* z-index:-1; */
        }

        @media (min-width: 768px) {
            .job-card {
                padding: 24px;
            }
        }

        .job-card:hover {
            box-shadow: 0 8px 30px rgba(0, 98, 158, 0.06);
        }

        .job-card .company-logo {
            width: 48px;
            height: 48px;
            background-color: var(--slate-50);
            border: 1px solid var(--slate-100);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        @media (min-width: 768px) {
            .job-card .company-logo {
                width: 64px;
                height: 64px;
            }
        }

        .btn-apply {
            background-color: var(--secondary);
            color: #ffffff;
            font-size: 13px;
            font-weight: 500;
            border: none;
            padding: 6px 10px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        .btn-apply:hover {
            background-color: #004a79;
            color: #ffffff;
            text-decoration: none;
        }

        .btn-view-more {
            background-color: transparent;
            border: 1px solid var(--slate-200);
            color: var(--slate-600);
            font-size: 14px;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        .btn-view-more:hover {
            background-color: var(--slate-50);
            text-decoration: none;
        }

        .job-card-row {
            z-index:1;
            display: flex;
            flex-direction: column;

        }

        @media (min-width: 768px) {
            .job-card-row {
                z-index:1;
                flex-direction: row;
                flex-wrap: wrap;
            }
        }

        .job-actions {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 12px;
            width: 100%;
            margin-top: 16px;
        }

        @media (min-width: 768px) {
            .job-actions {
                flex-direction: column;
                justify-content: flex-start;
                width: auto;
                margin-top: 0;
            }
        }

        .tag-featured {
            background-color: var(--primary-container);
            color: #ffffff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 2px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .job-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 10px;
            font-weight: 700;
            color: var(--slate-400);
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        @media (min-width: 768px) {
            .job-meta-item {
                font-size: 12px;
            }
        }

        /* Form Controls */
        .custom-select-wrapper {
            position: relative;
        }

        .custom-select {
            width: 100%;
            background-color: #ffffff;
            border: 1px solid var(--slate-200);
            border-radius: 4px;
            padding: 8px 32px 8px 12px;
            font-size: 14px;
            appearance: none;
            -webkit-appearance: none;
            outline: none;
        }

        .custom-select:focus {
            ring: 2px solid var(--secondary);
            border-color: var(--secondary);
        }

        .custom-select-icon {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--slate-400);
            pointer-events: none;
        }

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

        .page-btn {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--slate-200);
            border-radius: 4px;
            color: var(--slate-600);
            font-weight: 700;
            font-size: 14px;
            transition: background-color 0.2s;
            background: none;
        }

        @media (min-width: 768px) {
            .page-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        .page-btn:hover {
            background-color: var(--slate-50);
            text-decoration: none;
        }

        .page-btn.active {
            background-color: var(--secondary);
            color: #ffffff;
            border-color: var(--secondary);
        }

        .page-btn.disabled {
            color: var(--slate-400);
            cursor: not-allowed;
        }

        /* Bootstrap Grid Overrides for exact spacing */
        .row-custom {
            margin-left: -12px;
            margin-right: -12px;
        }

        .col-custom {
            padding-left: 12px;
            padding-right: 12px;
        }

        /* Helpers */
        .text-secondary-custom {
            color: var(--secondary);
        }

        .text-primary-custom {
            color: var(--primary);
        }

        .text-slate-500 {
            color: var(--slate-500);
        }

        .text-slate-400 {
            color: var(--slate-400);
        }

        .mb-1 {
            margin-bottom: 4px;
        }

        .mb-2 {
            margin-bottom: 8px;
        }

        .mb-4 {
            margin-bottom: 16px;
        }

        .mb-6 {
            margin-bottom: 24px;
        }

        .space-y-2>*+* {
            margin-top: 8px;
        }

        .space-y-4>*+* {
            margin-top: 16px;
        }

        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
    

        /* ********************************** */
        