.body {
    background-color: #979797;
}

.lowongan {
    padding-top: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.job-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin: 20px auto;
    max-width: 800px;
    width: 90%;
    transition: transform 0.2s ease-in-out;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.job-actions {
    display: flex;
    gap: 10px;
}

.edit-button,
.delete-button {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    color: white;
}

.edit-button {
    background-color: #ffc107;
}

.edit-button:hover {
    background-color: #e0a800;
}

.delete-button {
    background-color: #dc3545;
}

.delete-button:hover {
    background-color: #c82333;
}


.job-title {
    font-size: 32px;
    font-weight: bold;
    color: #a00000;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #777;
    margin-bottom: 24px;
}

.job-location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-section {
    margin-bottom: 24px;
}

.job-section-title {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    margin-bottom: 12px;
}

.job-description,
.job-qualifications {
    color: #444;
    padding-left: 20px;
    line-height: 1.6;
}

.job-description li,
.job-qualifications li {
    margin-bottom: 8px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.job-link {
    font-weight: bold;
    color: #15827c;
    text-decoration: none;
}

.job-link:hover {
    color: #0e5e5a;
}

.apply-button {
    background-color: #15827c;
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #106b66;
}