.careers-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}
.careers-table th, .careers-table td {
    border: 1px solid #ddd;
    padding: 8px;
}
.careers-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}
.careers-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
/* Careers Filter Form Styling */
.careers-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.careers-filter-form .filter-input,
.careers-filter-form .filter-select,
.careers-filter-form .filter-button {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.careers-filter-form .filter-button {
    color: #fff;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-filter-form {
        flex-direction: column;
        gap: 15px;
    }
}