/* Wrapper Styling */
#job-filter-wrapper {
    padding: 20px;
    background: #f7f9fc;
    border-radius: 12px;
    max-width: 800px;
    margin: 30px auto;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Date Filter Buttons */
.filter-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.filter-buttons .date-filter {
    background: linear-gradient(135deg, #005baa, #0099cc);
    color: white;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.filter-buttons .date-filter:hover {
    background: linear-gradient(135deg, #004080, #0077aa);
    transform: translateY(-2px);
}

.filter-buttons .date-filter.active {
    background: linear-gradient(135deg, #ff5722, #ff7043);
}

/* Dropdowns */
.filter-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.filter-selects select {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    width: 100%;
    appearance: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Checkboxes */
.filter-checkboxes {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-checkboxes label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.filter-checkboxes input[type="checkbox"] {
    transform: scale(1.1);
}

/* Action Buttons */
#job-filter-form button[type="submit"],
#job-filter-form button[type="reset"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#job-filter-form button[type="submit"] {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    margin-bottom: 10px;
}

#job-filter-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #0056b3, #0099cc);
}

#job-filter-form button[type="reset"] {
    background: linear-gradient(135deg, #ff3e3e, #ff884d);
}

#job-filter-form button[type="reset"]:hover {
    background: linear-gradient(135deg, #cc0000, #ff7043);
}

/* Result Area */
#job-filter-results {
    margin-top: 30px;
    font-size: 16px;
}
.job-filter-heading {
    font-size: 20px;
    font-weight: bold;
    color: #9B177E;
    margin-bottom:10px;
    margin-top:10px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}
.job-heading{
    font-size: 26px;
    font-weight: bold;
    color: #002855; /* dark navy blue */
    border: 2px dotted #004080; /* dotted border */
    padding: 10px 16px;
    text-align: center;
    border-radius: 8px;
    background-color: #f0f8ff; /* optional soft blue background */
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
}


