:root {
    --developer-copyright: "Copyright CirebonKerja.ID - Developer: Pais";
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
body {
    background-color: #f1f5f9; 
    color: #334155;
    line-height: 1.6;
}
.container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 95%;
}
header {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #f1f5f9;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo-icon {
    color: #2563eb;
}
.logo span {
    color: #2563eb;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #0f172a;
    cursor: pointer;
    padding: 5px;
}
nav {
    display: flex;
    gap: 20px;
    align-items: center;
}
nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}
nav a:hover, nav a.active {
    color: #2563eb;
}
.btn-pasang-loker {
    background-color: #2563eb !important;
    color: #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 6px;
    font-weight: 600 !important;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}
.btn-pasang-loker:hover {
    background-color: #1d4ed8 !important;
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
    text-decoration: none !important;
    transform: translateY(-1px);
}
.banner-area {
    width: 100%;
    height: 200px;
    position: relative;
    background-color: #e2e8f0;
}
.banner-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.2));
    display: flex;
    align-items: center;
    padding: 0 40px;
}
.banner-text {
    color: #ffffff;
}
.banner-text h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.2;
}
.banner-text p {
    font-size: 15px;
    opacity: 0.9;
}
.content-area {
    padding: 30px 40px 40px 40px;
}
.filter-area {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.filter-area input, .filter-area select {
    padding: 10px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #f8fafc;
    font-size: 14px;
    color: #475569;
    outline: none;
    transition: all 0.2s;
    flex: 1 1 auto;
}
.filter-area input { min-width: 100%; }
@media (min-width: 600px) {
    .filter-area input { min-width: 200px; }
}
.filter-area input:focus, .filter-area select:focus {
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
#view-list { display: block; }
.job-row {
    padding: 20px 10px;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.job-row:last-child { border-bottom: none; }
.job-row:hover { background-color: #f8fafc; border-radius: 8px; border-bottom-color: transparent; }
.job-title-slim { font-weight: 700; color: #0f172a; font-size: 17px; line-height: 1.3; }
.job-company { font-size: 14px; color: #2563eb; font-weight: 500; }
.job-meta-slim { color: #64748b; font-size: 13px; display: flex; gap: 15px; flex-wrap: wrap; margin-top: 4px; }
.meta-item { display: flex; align-items: center; gap: 4px; }
.no-result { text-align: center; padding: 40px 20px; color: #64748b; font-size: 15px; background-color: #f8fafc; border-radius: 8px; }
#view-detail { display: none; }
.btn-back { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; color: #64748b; font-size: 14px; font-weight: 600; margin-bottom: 30px; text-decoration: none; transition: color 0.2s; }
.btn-back:hover { color: #0f172a; }
.detail-header { margin-bottom: 24px; }
.detail-title { font-size: 26px; color: #0f172a; font-weight: 800; line-height: 1.3; }
.detail-company { font-size: 18px; font-weight: 600; color: #2563eb; margin-top: 5px; }
.detail-specs { background-color: #f8fafc; padding: 20px; border-radius: 8px; margin-bottom: 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; border: 1px solid #e2e8f0; }
.spec-item { display: flex; flex-direction: column; gap: 4px; }
.spec-label { font-size: 12px; color: #64748b; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.spec-value { font-size: 14px; color: #0f172a; font-weight: 600; }
.detail-body-title { font-size: 18px; color: #0f172a; font-weight: 700; margin-bottom: 15px; }

.detail-body { 
    color: #334155; 
    margin-bottom: 40px; 
    font-size: 15px; 
    line-height: 1.6; 
}
.detail-body p, .detail-body div { 
    margin-bottom: 12px; 
}
.detail-body ul, .detail-body ol { 
    margin-top: 4px; 
    margin-bottom: 12px; 
    padding-left: 24px; 
}
.detail-body li { 
    margin-bottom: 4px; 
}

.btn-apply { display: block; width: 100%; text-align: center; background-color: #2563eb; color: white; padding: 14px 20px; text-decoration: none; font-weight: 600; border-radius: 8px; font-size: 16px; transition: background-color 0.2s; }
.btn-apply:hover { background-color: #1d4ed8; }

@media (max-width: 768px) {
    .container { margin: 0 auto; border-radius: 0; width: 100%; }
    header { padding: 15px 20px; }
    
    .mobile-menu-btn { display: block; }
    
    nav {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding-bottom: 15px;
    }
    
    nav.show { display: flex; }
    
    nav a {
        padding: 15px 20px;
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }
    nav a.btn-pasang-loker {
        margin: 15px 20px 0 20px;
        width: calc(100% - 40px);
        text-align: center;
        border-bottom: none;
    }

    .banner-area { height: 160px; }
    .banner-overlay { padding: 0 20px; }
    .banner-text h1 { font-size: 22px; }
    .banner-text p { font-size: 13px; }
    .content-area { padding: 20px; }
    .filter-area { flex-direction: column; }
    .filter-area select { width: 100%; }
    .job-title-slim { font-size: 16px; }
    .job-meta-slim { gap: 8px; font-size: 12px; }
    .detail-title { font-size: 22px; }
    .detail-specs { grid-template-columns: 1fr; }
}