@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
    background: #f7f8fa;
}
.navbar {
    background-color: #343a40;
    margin-bottom: 0;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}
.navbar-logo {
    flex: 0 0 auto;
}
.navbar-logo img {
    height: 50px;
    margin-top: 2px;
    margin-left: 20px;
}
.navbar-login {
    flex: 1 0 auto;
    text-align: right;
}
.navbar-login a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    background-color: none;
    margin-right: 20px;
    padding: 6px 12px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 13px;
}
.navbar-login a:hover {
    background-color: #ff1100;
    border-color: #ff1100;
}
.slider {
    background-image: url('../logo/bgfix3.png'); /* Jalur ke gambar di folder assets/logo */
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 0;
}
.slider-text h2 {
    /* font-family: verdana; */
}
.slider-text h4 {
    /* font-family: verdana; */
}
.slider-text p {
    /* font-family: verdana; */
}
.footer {
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 14px;
    margin-top: 20px;
}

.footer-author {
    font-weight: bold;
    color: #FF7D29;
}

/* Styles for mobile sidebar */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #343a40;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #343a40;
    color: white;
    padding: 10px 15px;
    border: none;
    display: none;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .navbar-logo img {
        height: 30px;
    }
    .navbar-login {
        display: none;
    }
    .openbtn {
        display: block;
        margin-left: auto;
    }
    .slider {
        height: 200px;
    }
    .sidebar {
        max-width: 400px;
    }

}

.job-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-bottom: 32px;
    padding: 32px 48px;
    min-height: 120px;
    max-width: 1400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    transition: box-shadow 0.2s;
    overflow: visible;
    border-left: 8px solid #32b6f1; /* Outline biru di sisi kiri */
}
.job-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.job-img {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    flex-shrink: 0;
    margin-right: 24px;
}
.job-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
    border-radius: 10px;
}
.job-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}
.job-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 500;
    color: #222;
    word-break: break-word;
}
.job-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.job-kerjasama {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}
.job-kerjasama i {
    color: #FF7D29;
    font-size: 18px;
}
.job-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}
.job-date i.fa-calendar {
    color: #FF7D29;
    font-size: 18px;
}
.job-tempat i {
    color: #FF7D29;
    font-size: 18px;
}
.job-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #fff;
    width: auto;
    flex-shrink: 0;
    margin-left: 0;
    padding-right: 24px;
}
.job-action .btn-success {
    background: #32b6f1  ;
    color: #fff;
    border: none;
    padding: 20px 20px;
    font-size: 15px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    min-width: 100px;
    width: auto;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(40,167,69,0.08);
    align-self: center;
    letter-spacing: 0.5px;
}
.job-action .btn-success:hover {
    background: #178dc4 ;
    box-shadow: 0 4px 16px rgba(40,167,69,0.15);
}
@media (max-width: 1200px) {
    .job-card {
        max-width: 98vw;
        padding: 18px 4vw;
    }
    .job-img {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 900px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 2vw;
    }
    .job-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .job-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .job-action {
        width: 100%;
        justify-content: flex-start;
        margin-top: 16px;
        margin-left: 0;
    }
}
.job-title, .job-info, .job-meta, .section-title, .job-card {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
}
.section-title h4 {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
    font-weight: 600;
}
.job-meta i {
    /* color: #007bff; */ /* warna biru, bisa diganti sesuai kebutuhan - dihapus agar tidak menimpa ikon spesifik */
    font-size: 18px;
    vertical-align: middle;
    margin-right: 4px;
}

.job-meta span {
    margin-right: 18px;
    font-size: 16px;
    color: #222;
}

@media (max-width: 600px) {
  .job-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .job-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 0;
    width: 100%;
    font-size: 14px;
  }
  .job-meta span i {
    margin-right: 0;
  }
  .job-meta span .icon-wrapper {
    width: 30px;
    text-align: left;
    flex-shrink: 0;
  }
  .job-meta i {
    /* Properti ini dipindahkan ke .icon-wrapper atau tidak lagi diperlukan */
  }
  .job-img {
    width: 50px;
    height: 50px;
  }
  .job-title {
    font-size: 16px;
  }
  .job-action .btn-success {
    padding: 12px 16px;
    font-size: 14px;
  }
  .job-meta span {
    font-size: 14px;
  }
}