.elementor-141 .elementor-element.elementor-element-4c19ab6f{--display:flex;}.elementor-141 .elementor-element.elementor-element-4c19ab6f:not(.elementor-motion-effects-element-type-background), .elementor-141 .elementor-element.elementor-element-4c19ab6f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-9acef9f );}/* Start custom CSS for container, class: .elementor-element-4c19ab6f *//* ============================= */
/* JOB FILTER BAR (NEON GLOW)    */
/* ============================= */

/* Container background (glow bar) */
.job_filters {
    background: #000 !important;              /* dark background */
    border-radius: 12px;
    padding: 15px 20px;
    margin-top: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0,229,255,0.25), 
                0 0 35px rgba(255,0,170,0.25);
}

/* Remove any inner white */
.job_filters .job_types,
.job_filters .job_types li {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Layout */
.job_filters .job_types {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    padding: 10px 0;
}

/* CHECKBOXES (Neon Style) */
.job_types input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #00E5FF;
    border-radius: 4px;
    background: #000;
    cursor: pointer;
    position: relative;
    margin-right: 6px;
    vertical-align: middle;
    box-shadow: 0 0 6px rgba(0,229,255,0.4);
    transition: all 0.25s ease-in-out;
}

/* Hover glow */
.job_types input[type="checkbox"]:hover {
    border-color: #FF00AA;
    box-shadow: 0 0 12px rgba(255,0,170,0.7);
}

/* Checked state */
.job_types input[type="checkbox"]:checked {
    background: #FF00AA;
    border-color: #FF00AA;
    box-shadow: 0 0 15px rgba(255,0,170,0.9), 
                0 0 10px rgba(0,229,255,0.8);
}

/* Tick mark */
.job_types input[type="checkbox"]:checked::after {
    content: "✓";
    color: #fff;
    font-size: 13px;
    position: absolute;
    top: -1px;
    left: 3px;
    text-shadow: 0 0 6px #fff, 0 0 8px #00E5FF;
}

/* Label text beside checkboxes */
.job_types label {
    color: #fff !important;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}
.job_types label:hover {
    color: #00E5FF !important;
    text-shadow: 0 0 6px rgba(0,229,255,0.8);
}
/* ============================= */
/* JOB LISTINGS TEXT FIX         */
/* ============================= */

/* Job title */
.job_listings .job_listing .position h3,
.job_listings .job_listing .position h3 a {
    color: #ffffff !important;   /* white */
    font-weight: 600;
}

/* Company name + category text */
.job_listings .job_listing .company,
.job_listings .job_listing .company strong,
.job_listings .job_listing .company div {
    color: #ffffff !important;
}

/* Location text */
.job_listings .job_listing .location,
.job_listings .job_listing .location strong {
    color: #ffffff !important;
}

/* Job meta info (date, etc.) */
.job_listings .job_listing .meta,
.job_listings .job_listing .meta * {
    color: #aaaaaa !important;  /* subtle grey for "posted X ago" */
}
/* ============================= */
/* JOB LISTINGS TEXT FIX         */
/* ============================= */

/* Job title */
.job_listings .job_listing .position h3,
.job_listings .job_listing .position h3 a {
    color: #ffffff !important;   /* white */
    font-weight: 600;
}

/* Company name + category text */
.job_listings .job_listing .company,
.job_listings .job_listing .company strong,
.job_listings .job_listing .company div {
    color: #ffffff !important;
}

/* Location text */
.job_listings .job_listing .location,
.job_listings .job_listing .location strong {
    color: #ffffff !important;
}

/* Job meta info (date, etc.) */
.job_listings .job_listing .meta,
.job_listings .job_listing .meta * {
    color: #aaaaaa !important;  /* subtle grey for "posted X ago" */
}
/* ============================= */
/* JOB SEARCH BAR STYLING        */
/* ============================= */

/* Search form container */
.job_filters {
    background: #0A0A0A !important;   /* dark background */
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.2); /* neon cyan glow */
    border: 1px solid #111;
}

/* Input fields (keywords + location) */
.job_filters input[type="text"],
.job_filters input[type="search"] {
    background: #000 !important;      /* black inside */
    color: #fff !important;           /* white text */
    border: 2px solid #00e5ff !important;  /* neon cyan border */
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    box-shadow: 0 0 12px rgba(0,229,255,0.6);
    transition: all 0.3s ease;
}

/* Input focus */
.job_filters input[type="text"]:focus,
.job_filters input[type="search"]:focus {
    border-color: #ff2da6 !important;   /* neon pink border on focus */
    box-shadow: 0 0 15px rgba(255,45,166,0.8);
}

/* SEARCH JOBS Button */
.job_filters .search_jobs input[type="submit"] {
    background: linear-gradient(90deg, #ff2da6, #00e5ff) !important;
    color: #fff !important;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 25px rgba(0,229,255,0.5);
    transition: all 0.3s ease;
}

/* Button hover */
.job_filters .search_jobs input[type="submit"]:hover {
    background: linear-gradient(90deg, #00e5ff, #ff2da6) !important;
    box-shadow: 0 0 35px rgba(255,45,166,0.8);
}

/* Remote checkbox */
.job_filters input[type="checkbox"] {
    accent-color: #ff2da6 !important;  /* neon pink tick */
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255,45,166,0.8);
}
/* Hide RSS feed box under filters */
.job_filters .rss_link,
.job_filters .showing_jobs {
    display: none !important;
}
/* Remove the white box under filters */
.job_filters .showing_jobs,
.job_filters .rss_link {
    display: none !important;
}
/* Hide extra filter footer container */
.job_filters + div {
    display: none !important;
}/* End custom CSS */