/* CSS file for sc_jobs.php */

/* Job Listings Container */
.job-listings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual Job Post */
.job-post {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Job Title */
.job-title {
    font-size: 1.4em;
    margin-bottom: 5px;
}

/* Job Type */
.job-type {
    font-style: italic;
    color: #555;
    margin-bottom: 5px;
}

/* Job Department */
.job-department {
    font-weight: regular;
    color: #333;
    margin-bottom: 5px;
}

/* Job Date */
.job-date {
    font-weight: regular;
    color: #333;
    margin-bottom: 5px;
}

/* Job Description */
.job-description {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}
