.job-offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.job-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    background-color: #fff;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.job-card-header {
    margin-bottom: 15px;
}

.job-title {
    margin: 0 0 5px 0;
    color: #333;
}

.job-company {
    font-weight: bold;
    color: #0073aa;
    font-size: 1.1em;
}

.job-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
}

.job-location, .job-salary {
    font-weight: bold;
}

.job-description {
    margin: 15px 0;
    color: #555;
    line-height: 1.5;
}

.job-detail-link {
    display: inline-block;
    background-color: #0073aa;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.job-detail-link:hover {
    background-color: #005a87;
}

/* Job Detail Page Styles */
.job-detail-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 20px auto;
}

.job-detail-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.job-title {
    margin: 0 0 10px 0;
    color: #333;
}

.job-company {
    font-weight: bold;
    color: #0073aa;
    font-size: 1.2em;
}

.job-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #666;
}

.job-location, .job-salary {
    font-weight: bold;
}

.job-section {
    margin-bottom: 25px;
}

.job-section h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #0073aa;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.job-apply-button {
    display: inline-block;
    background-color: #0073aa;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 10px;
}

.job-apply-button:hover {
    background-color: #005a87;
}