* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Mengatur font dasar untuk seluruh website */
body {
    font-family: "BlinkMacSystemFont", "Helvetica Neue", sans-serif, helvetica, clean, arial;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5rem;
    color: #0a0a0a;
}

/* Pengaturan untuk tautan */
a {
    text-decoration: none;
    color: #3a3a3a;
}

/* Pengaturan untuk judul */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

/* Ukuran spesifik untuk judul */
h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}


svg {
    vertical-align: sub;
}









/* Header */
/* ==================================== */
header {
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: white;
    padding: 10px;
}

.navbar a {
    text-decoration: none;
}

.navbar .logo {
    font-size: 20px;
    font-weight: bold;
    color: #0094ff;
    position: relative;
    /* Agar .dot bisa diposisikan relatif terhadap logo */
    line-height: 20px;
}

.navbar .logo img {
    height: 25px;
}

.navbar .logo .dot {
    font-size: 30px;
    color: #ff6a00;
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
}


.hamburger {
    font-size: 24px;
    cursor: pointer;
    display: block;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 90vw;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    /* padding: 20px; */
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    text-decoration: none;
    color: black;
    padding: 25px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

.nav-menu a:hover {
    background: #f9f9f9;
}



.close-menu {
    font-size: 24px;
    text-align: right;
    /* cursor: pointer; */
    margin: 20px;
}

#close-menu {
    cursor: pointer;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
    z-index: 90;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
    }

    .nav-menu a {
        border: none;
        padding: 5px 15px;
    }

    a.saved-list-btn {
        font-weight: bold;
        /* color: #0094ff; */
        border-bottom: 2px solid #0276c9;
        font-style: italic;
        margin-right: 15px;
    }

    a.saved-list-btn:hover {
        color: #fff;
        background-color: #0094ff;
    }

    .close-menu {
        display: none;
    }

    .overlay {
        display: none;
    }
}

@media (max-width: 450px) {
    .nav-menu {
        width: 100%;
    }
}






.search-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    align-items: center;
    background: white;
    transition: width 0.3s ease;
    width: 100%;
    max-width: 850px;
}

.search-form .input-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    transition: width 0.3s ease;
}

.search-form .input-container .i-input {
    position: absolute;
    left: 10px;
    color: gray;
}

.search-form .input-container svg {
    position: absolute;
    left: 10px;
    color: gray;
}

.search-form input {
    /* padding: 15px 10px 15px 35px; */
    padding-left: 35px;
    padding-right: 10px;
    border: 1px solid #767676;
    outline: none;
    font-size: 14px;
    width: 100%;
    transition: width 0.3s ease;
    height: 50px;
}

.search-form .input-container:first-child input {
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.search-form .input-container:last-child input {
    border-radius: 0 6px 6px 0;
    border-left: none;
}

.search-form .input-container .clear-input {
    position: absolute;
    right: 5px;
    color: gray;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    font-weight: bold;
    background-color: #ffffff;
    display: none;
}

.search-form .input-container .clear-input:hover i {
    color: #ff0000;
}

.clear-input svg {
    position: relative !important;
    left: 0 !important;
}

.clear-input svg:hover {
    color: #ff0000 !important;
}

.search-form button {
    background: #ff6a00;
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid #ff6a00;
    height: 50px;
}

.search-form button:hover {
    background: #0094ff;
    border: 1px solid #0094ff;
}

.search-form .input-container:focus-within {
    box-shadow: 0 2px 4px #bcbcbc;
}

@media (max-width: 768px) {
    .search-form .input-container:focus-within {
        width: 500%;
    }

    .navbar {
        margin-bottom: 10px;
    }
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    display: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    max-height: 60vh;
    overflow-y: auto;
    z-index: 10;
}

.search-section {
    padding: 10px;
}

.search-section:last-child {
    border-top: 1px solid #f0f0f0;
}

.section-title {
    font-size: medium;
    font-weight: bold;
    color: #000000;
    margin: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.search-item:hover {
    background: #f0f0f0;
}

.search-icon {
    font-size: 14px;
    margin-right: 10px;
}

.rm-recent {
    color: #a00;
    font-size: 14px;
    margin-left: auto;
    width: 15px;
    /* Tambahkan lebar 15px */
    height: 15px;
    /* Tambahkan tinggi 15px */
    display: inline-block;
    /* Ubah menjadi inline-block agar width dan height berfungsi */
    line-height: 15px;
    /* Sesuaikan line-height agar ikon vertikal tengah */
    text-align: center;
    /* Memastikan ikon horizontal tengah */
    background-color: #0094ff;
    z-index: 9;
}

.rm-recent i {
    display: inline-block;
}

.clear-history {
    text-align: center;
    padding: 5px;
}


.clear-history a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2f2f2f;
}

.clear-history a i {
    margin-right: 5px;
}

.clear-history a:hover {
    color: #171717;
    text-decoration: underline;
}

.search-dropdown svg {
    position: static !important;
    margin-right: 5px;
    color: inherit !important;
}






/* CSS untuk filter */
.filter-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    font-size: 12px;
}

.filter-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 7px;
    -webkit-overflow-scrolling: touch;
    /* scrollbar-width: thin; */
    scrollbar-color: #e4e2e2 transparent;
    width: 100%;
    max-width: 1000px;
    justify-content: left;
}

/* Sembunyikan scrollbar di beberapa browser untuk estetika (opsional) */
.filter-wrapper::-webkit-scrollbar {
    height: 3px;
    /* Membuat scrollbar lebih tipis */
}

.filter-wrapper::-webkit-scrollbar-thumb {
    background: #e1e1e1;
    /* Warna thumb scrollbar */
    border-radius: 10px;
}

.filter-wrapper::-webkit-scrollbar-track {
    background: transparent;
    /* Latar belakang scrollbar */
}




.filter-dropdown {
    position: relative;
    display: inline-block;
}

.filter-btn {
    /* background: #f0f0f0; */
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
    font-size: 12px;
}

.filter-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

.filter-btn i {
    font-size: 12px;
}

.filter-options {
    position: fixed;
    top: auto;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
    min-width: 150px;
}


.filter-options.show {
    display: block;
}

.filter-option {
    padding: 5px 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.filter-option:hover {
    background: #f0f0f0;
}

/* End filter */

@media (max-width: 768px) {
    .filter-options {
        border-radius: 0px;
        margin-top: 10px;

        width: 100%;
        left: 0;
        right: 0;
    }

}

/* End header */
/* ==================================== */













/* Search content */
/* ==================================== */
#search-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
    gap: 10px;
    padding-bottom: 20px;
}

.job-listings {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 30px 0;
}

.job-search-detail {
    flex: 2;
    min-width: 300px;
    max-width: 700px;
    background-color: #ffffff;
    border-radius: 5px;
    /* padding: 30px 0; */
    overflow-y: auto;
    position: sticky;
    top: 0;
    right: 0;
    height: 100vh;

    scrollbar-width: thin;
    scrollbar-color: #efefef #ffffff;
}

.job-search-detail::-webkit-scrollbar {
    width: 3px;
    /* Ubah di sini */
}

.job-search-detail::-webkit-scrollbar-thumb {
    /* background-color:#efefef; */
    border-radius: 5px;
}

.job-search-detail::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}





.search-property {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.count-search,
.sort-search,
.query-search {
    font-size: .8rem;
    color: #555;
}

.sort-search a {
    color: #0094ff;
}

.sort-search a:hover {
    text-decoration: underline;
}



.job-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px 15px 10px 15px;
    margin-bottom: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: background-color 0.3s;
    cursor: pointer;
    user-select: none;
}

.job-item:hover {
    background-color: #fafafa;
}

.job-item:active {
    border: 0.5px solid #0094ff;
}

.job-item.active {
    border: 0.5px solid #0094ff;
    background-color: #fafafa;
}

.job-title {
    font-size: 1.35rem;
    font-weight: bold;
    color: #2d2d2d;
    margin-bottom: 8px;
    text-decoration: none;
    transition: text-decoration 0.3s;
}

.job-item:hover .job-title {
    text-decoration: underline;
}

.company-info {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.company-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    /* border-radius: 4px; */
}

.company-name {
    font-size: 0.9rem;
    color: #555;
}

.detljoblist {
    font-size: .8rem;
    color: #555;
    margin: 5px 0;
}

.detljoblist i {
    margin-right: 3px;
    width: 20px;
}

.salarycolor {
    color: #057642;
}

.excerpt {
    font-size: .85rem;
    color: #979797;
    margin: 15px 0 10px 0;
}

.excerpt ul {
    margin-left: 20px;
}

.time-posted {
    font-size: .7rem;
    color: #888;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.save-button {
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: .7rem;
    color: #555;
    transition: background-color 0.3s, color 0.3s;
    padding: 0 5px;
    padding-left: 20px;
}

.save-button i {
    margin-right: 5px;
    font-size: .75rem;
}

.save-button:hover {
    color: #333;
}

.save-button.saved {
    background-color: #fff0e6;
    border-color: #ff6a00;
    color: #ff6a00;
    padding: 0 5px;
}


.nojob-result {
    font-size: 1rem;
}







/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.pagination a {
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
}



.pagination span {
    padding: 10px 15px;
    background: #f0f0f0;
    border-radius: 4px;
    color: #999;
    opacity: 0.6;
}

.next {
    background: #0094ff;
}

.prev {
    background: #ff6a00;
}

.next:hover {
    background: #0276c9;
}

.prev:hover {
    background: #d65d06;
}








/* Job detail di samping search */
/* Styling untuk tombol close */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #3d3d3d;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 25px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    background-color: #3d3d3d;
    color: #ffffff;
}

.job-search-detail {
    background-color: #ffffff;
}






/* Media Queries untuk Responsivitas */
@media (max-width: 900px) {
    #search-content-wrapper {
        flex-direction: column;
    }

    .job-listings {
        max-width: 100%;
    }

    .close-button {
        position: fixed;
        display: flex;
    }

    .job-search-detail {
        display: none;
        max-width: 100%;
    }

    .job-search-detail.show {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 1000;
    }

    /* Disable scrolling on body when job-search-detail is shown */
    body:has(.job-search-detail.show) {
        overflow: hidden;
    }
}

/* End search content */
/* ==================================== */





/* Skeleton Loading */
.skeleton {
    background: #f0f0f0;
    border-radius: 4px;
    animation: pulse 1.5s infinite;
}

.skeleton-text {
    height: 20px;
    margin: 10px 0;
}

.skeleton-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

@keyframes pulse {
    0% {
        background-color: #f0f0f0;
    }

    50% {
        background-color: #e0e0e0;
    }

    100% {
        background-color: #f0f0f0;
    }
}



/* CSS untuk footer sederhana */
footer {
    background-color: #fff;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: #666;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #0094ff;
}

.footer-logo .dot {
    font-size: 24px;
    color: #ff6a00;
    margin-left: 2px;
}

.footer-logo span {
    margin-left: 5px;
    color: #666;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6a00;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-selector select {
    border: none;
    background: transparent;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    border: 0.1px solid #888;
    border-radius: 2px;
    padding: 2px;
}

.language-selector select:focus {
    outline: none;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}




/* View Job */
.job-detail-container {
    max-width: 950px;
    margin: 20px auto;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-detail-header {
    position: relative;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding: 20px;
}

.job-detail-header h1 {
    font-size: 28px;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.job-detail-company-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.job-head-company-logo {
    width: 122px;
    height: 100px; /* Tinggi tetap */
    margin-right: 0;
    overflow: hidden;
    border-right: 2px solid #ff6a00;
    padding-right: 20px;
}

.job-head-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.job-head-detail div {
    margin: 5px 0;
}

.job-head-detail .company-name {
    font-size: 1rem;
    color: #555;
    /* font-weight: bold; */
}

.job-detail-header .job-salary {
    color: #057642;
}

.detlheadjob {
    font-size: .9rem;
    color: #555;
}


.job-detail-header .time-posted {
    font-size: .8rem;
    color: #888;
    margin-top: 10px;
}

.job-detail-header i {
    width: 20px;
    margin-right: 5px;
    text-align: center;
}

.job-detail-header svg {
    margin-right: 5px;
    text-align: center;
}




.job-detail-content {
    padding: 20px;
    padding-bottom: 40px;
    font-size: .97rem !important;
    font-weight: 400;
    line-height: 1.7rem;
    color: #535252;
    letter-spacing: 0.05px;
}

.job-detail-content div,
.job-detail-content p {
    margin-top: 14px;
}

.job-detail-content h2 {
    font-size: 1rem;
    margin: 5px 0;
    color: #1f1f1f;
}

.job-detail-content h3 {
    font-size: 19px;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.job-detail-content ul {
    margin-bottom: 10px;
}

.job-detail-content ul li {
    margin-left: 25px;
}

.job-detail-content b {
    color: #1f1f1f;
}



.apply-button-up {
    display: inline-block;
    background: #0094ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    right: 20px;
    line-height: 1.5rem;
    min-width: 200px;
}

.apply-button-up:hover {
    background: #0276c9;
}


.apply-button {
    display: inline-block;
    background: #0094ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    font-weight: bold;
    line-height: 1.5rem;
}

.apply-button:hover {
    background: #0276c9;
}


.btn-read-bottom {
    margin-top: 10vh !important;
    text-align: center;
}

.btn-read-bottom .apply-button {
    margin: 0 20px;
    min-width: 40%;
}


@media (max-width: 500px) {
    .btn-read-bottom .apply-button {
        min-width: 0;
    }
}


.job-detail-content .save-button, .job-detail-content .share-button {
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: .8rem;
    color: #555;
    transition: background-color 0.3s, color 0.3s;
    padding: 0 10px;
    user-select: none;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
}

.job-detail-content .save-button i, .job-detail-content .share-button i {
    margin-right: 5px;
    font-size: .9rem;
}

.job-detail-content .save-button:hover, .job-detail-content .share-button:hover {
    color: #0094ff;
}

.job-detail-content .save-button.saved {
    background-color: #fff0e6;
    border-color: #ff6a00;
    color: #ff6a00;
}


.job-detail-content .read-report {
    cursor: pointer;
    color: #a5a5a5;
    font-size: 0.7rem;
    font-style: italic;
    display: block; /* atau inline-block + width: fit-content */
    width: fit-content;
    margin: 30px auto 0;
}
.job-detail-content .read-report:hover {
    color: #757575;
    text-decoration: underline;
}



.share-dropdown {
    position: relative;
}

.share-menu {
    position: absolute;
    top: 50%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 6px;
    width: 130px;
}

.share-menu button,
.share-menu a {
    display: block;
    width: 100%;
    height: 27px;
    text-align: left;
    margin-bottom: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.share-menu button:hover,
.share-menu a:hover {
    color: #007bff;
}



.job-expired-warning {
    background-color: #ffe9e9;
    color: #c0392b;
    border: 1px solid #e0b4b4;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-weight: 500;
}
















/* Tambahan CSS untuk job-detail-recoment */
.job-detail-recoment {
    padding: 20px;
    border-top: 1px solid #e8e8e8;
    padding-top: 30px;
}

.recoment-header {
    margin-bottom: 20px;
}




/* Flash message ketika klik report job */
.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #28a745;
    color: white;
    border-radius: 5px;
    z-index: 1000;
    display: none;
    transition: opacity 0.5s ease-out;
}
.flash-message.error {
    background-color: #dc3545;
}












/* CSS UNTUK MINI DETAIL JOB DI SEARCH PAGE */
.min-wraper {
    border: 0.5px solid #ddd;
    border-radius: 8px;
    margin: 10px 0;
}

.min-detail-job {
    padding: 15px;
    border-bottom: 2px solid #ddd;
}

.min-detail-job:hover h2 {
    text-decoration: underline;
}


.min-job-title {
    margin-bottom: 10px;
    font-size: 1.9rem;
    color: #181818;
}

.min-job-company {
    display: flex;
    align-items: center;
    /* height: 80px; */
    gap: 10px;
    line-height: 1.6rem;
}

.min-job-company-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-right: 1px solid #ddd;
    padding-right: 10px;
}

.min-job-company-details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.min-job-company-details i {
    width: 20px;
    margin-right: 5px;
    text-align: center;
}

.min-job-company-details svg {
    margin-right: 5px;
    text-align: center;
}

.min-job-company-name {
    font-weight: bold;
    margin: auto 0;
}

.min-job-salary {
    font-size: 0.9em;
    color: #057642;
    margin: auto 0;
    font-weight: bold;
}

.min-job-detlheadjob {
    font-size: 0.9em;
    color: #555;
    margin: auto 0;
}

.min-job-description {
    padding: 30px 10px;
    font-size: .97rem !important;
    font-weight: 400;
    line-height: 1.7rem;
    color: #535252;
    letter-spacing: 0.05px;
}

.min-job-description div,
.min-job-description p {
    margin-top: 14px;
}

.min-job-description h2 {
    font-size: 1rem;
    margin: 5px 0;
    color: #1f1f1f;
}

.min-job-description h3 {
    font-size: 19px;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.min-job-description ul {
    margin-bottom: 10px;
}

.min-job-description ul li {
    margin-left: 25px;
}

.min-job-description b {
    color: #1f1f1f;
}



.min-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: sticky;
    bottom: 0px;
    z-index: 100;
    /* background-color: #fff; */
    padding: 10px;
}

.min-buttons a {
    display: block;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5)
}

.min-apply a {
    background-color: #0094ff;
}

.min-apply a:hover {
    background-color: #0276c9;
}
/* END CSS UNTUK MINI DETAIL JOB DI SEARCH PAGE */