.vacancies-filter-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    text-align: left;
}
.vacancies-filter-container{
	text-align:left !important;
}
#vf-count{
color:#000 !important;
}
.vf-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
    color:#000;
}

.vf-filter-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
    text-transform: capitalize; 
}

.vf-filters-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.vf-select {
    padding: 10px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 8px; 
    background-color: #fff;
    font-size: 15px;
    color: #333;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vf-select:hover,
.vf-select:focus {
    border-color: #aaa;
    outline: none;
}

.vf-select:disabled {
    background-color: #f9f9f9;
    color: #aaa;
    cursor: not-allowed;
}

/* Results Grid */
.vf-results-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.vf-group-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 15px 0px;
}

.vacancy-card {
    padding-bottom: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #c7c7c7;
    text-align: left;
}

.vacancy-card:last-child{
    padding-bottom: 0px;
    border-bottom: none;   
}

.vacancy-content {
    flex: 1;
    text-align: left;
}

.vacancy-title {
    font-family: 'Nunito Sans', sans-serif;
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.vacancy-title a {
    color: #000 !important; /* Bright Blue link color like typical job sites/Google */
    text-decoration: none;
    transition: color 0.15s;
    font-size: 20px;
}

.vacancy-title a:hover {
    color: #0d47a1;
    text-decoration: underine;
}

.vacancy-meta,
.vacancy-salary {
    font-size: 14px;
    color: #5f6368;
    margin-top: 10px;
    line-height: 1.5;
    text-align: left;
}

.vacancy-meta {
    font-weight: 400;
    text-align: left;
}

.vf-heading span{

    color: #000 !important;
}

.vacancy-link {
    display: inline-block;
    padding: 10px 25px;
    background-color: #00c2ff;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.vacancy-link:hover {
    background-color: #00ace6;
    text-decoration: none;
    color: #ffffff !important;
}

.vf-no-results {
    font-style: italic;
    color: #777;
    margin-top: 20px;
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    
    .vf-heading {
        margin-bottom: 18px;
    }

    .vf-filters-row {
        gap: 12px;
        margin-bottom: 25px;
    }

    .vf-select {
        min-width: 180px;
        padding: 9px 14px;
    }

    .vf-group-heading {
        padding: 12px 0;
    }

    .vacancy-card {
        padding-bottom: 20px;
    }

    .vacancy-title {
        font-size: 18px;
    }
}

/* Mobile and Small Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
    
    .vf-heading {
        margin-bottom: 10px;
    }

    /* Stack filters vertically on mobile/tablets */
    .vf-filters-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-bottom: 12px;
    }

    .vf-select {
        width: 100%;
        min-width: 100%;
        padding: 8px 10px;
        font-size: 14px;
    }

    .vf-group-heading {
        padding: 8px 0 5px 0;
        margin-bottom: 5px;
    }

    /* Stack vacancy card content and button */
    .vacancy-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-bottom: 15px;
    }

    .vacancy-content {
        width: 100%;
    }
    
    .vacancy-title {
        margin-bottom: 5px;
    }
    
    .vacancy-meta,
    .vacancy-salary {
        margin-top: 5px;
        font-size: 13px;
    }

    .vacancy-link {
        align-self: stretch;
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    
    .vf-heading {
        margin-bottom: 15px;
		font-size:28px;
    }
	
.vf-results-grid 
	{
    gap: 20px;
}
	
    .vf-filters-row {
        gap: 6px;
        margin-bottom: 10px;
    }

    .vf-select {
        padding: 7px 8px;
        font-size: 13px;
    }

    .vf-group-heading {
        font-size: 22px;
        padding: 6px 0 4px 0;
        margin-bottom: 4px;
    }

    .vacancy-card {
        gap: 8px;
        padding-bottom: 12px;
    }
    
    .vacancy-title {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .vacancy-title a {
        font-size: 18px;
    }
    
    .vacancy-meta,
    .vacancy-salary {
        margin-top: 3px;
        font-size: 12px;
    }

    .vacancy-link {
        padding: 9px 18px;
        font-size: 13px;
    }
	
}

