/* Custom styling for Infografis Pekerjaan */
.pekerjaan-container {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar */
.pekerjaan-container::-webkit-scrollbar {
    width: 6px;
}

.pekerjaan-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pekerjaan-container::-webkit-scrollbar-thumb {
    background: cadetblue;
    border-radius: 10px;
}

.pekerjaan-container::-webkit-scrollbar-thumb:hover {
    background: #4a7c7d;
}

/* List Item Styling */
.pekerjaan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.pekerjaan-item:hover {
    background-color: #f0f7f7;
    border-left: 4px solid cadetblue;
    transform: translateX(5px);
}

.pekerjaan-name {
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.pekerjaan-badge {
    background-color: cadetblue;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}
