a:link { 
  text-decoration: none; 
} 

a:visited { 
  text-decoration: none; 
} 

a:hover { 
  text-decoration: none; 
} 

a:active { 
  text-decoration: none; 
}

/* Pagination styles */
.pagination {
    display: flex;
    padding: 1em 0;
}

.pagination a,
.pagination strong {
    border: 1px solid silver;
    border-radius: 4px;
    color: #777;
    padding:0.4em;
    margin-right: 0.7em;
    text-decoration: none;
}

.pagination a:hover,
.pagination strong {
    border: 1px solid #777;
    background-color: #777;
    color: white;
}


/* AUTO KOTA */

/* =========================
   AUTOCOMPLETE BOX
========================= */
.kota-box {
  position: absolute;

  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 5px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.10);

  max-height: 240px;
  overflow-y: auto;

  display: none;

  z-index: 9999;

  /* smooth feel */
  animation: fadeIn 0.12s ease-in-out;
}

/* =========================
   ITEM LIST (BIAR JELAS SEPERTI LIST)
========================= */
.kota-item {
  padding: 11px 14px;
  font-size: 15px;
  cursor: pointer;
  color: #444444;
  font-weight: 400;
  /* separation antar item */
  border-bottom: 1px solid #eee;
  /* background subtle */
  background: #f9f9f9;
}

/* hover state */
.kota-item:hover {
  background: #f1f5ff;
  color: #1f3cff;
}

/* last item tanpa garis */
.kota-item:last-child {
  border-bottom: none;
}

/* =========================
   EMPTY STATE (optional kalau kamu pakai)
========================= */
.kota-box .empty {
  padding: 12px 14px;
  font-size: 13px;
  color: #adb5bd;
  text-align: center;
}


#loading {
  display:none;
  margin-bottom:12px;
  margin-top:20px;
}


/* ---------------------UP------*/

/* CARD FEEL SOFT */
.search-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* SEARCH BOX MODERN */
.search-box {
  position: relative;
}

.search-input {
  height: 56px;
  border-radius: 999px;
  padding: 0 60px 0 20px;
  border: 1px solid #eee;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

/* FOCUS EFFECT HALUS */
.search-input:focus {
  border-color: #ccc;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

/* BUTTON FLOATING */
.search-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  height: 44px;
  width: 44px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

/* HOVER LEBIH SOFT */
.search-btn:hover {
  background: #333;
  transform: scale(1.05);
}

/* TRENDING STYLE MINIMAL */
.trend-item {
  font-size: 0.8rem;
  color: #666;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f5f5f5;
  text-decoration: none;
  transition: all 0.2s ease;
}

.trend-item:hover {
  background: #111;
  color: #fff;
}

/* SECTION LABEL */
.section-label {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
}

/* JOB CARD */
.job-card {
  display: block;
  text-decoration: none;
  margin-bottom: 14px;
}

.job-body {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid #f1f1f1;
  transition: all 0.25s ease;
}

.job-body:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.job-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: #111;
}

.job-company {
  font-size: 0.85rem;
  color: #777;
}

.job-meta {
  font-size: 0.75rem;
  color: #999;
  margin-top: 6px;
}

/* BADGE PREMIUM */
.badge-premium {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff7e6;
  color: #b7791f;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* BADGE FREE */
.badge-free {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f2f2f2; /* hijau soft */
  color: #333; /* hijau lebih tegas */
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* INFO BOX */
.info-box {
  font-size: 0.8rem;
  color: #777;
  background: #fafafa;
  padding: 12px 14px;
  border-radius: 12px;
}

/* FOOTER WRAPPER */
footer,
.bg-white.border-top {
  background: #fff;
}

/* CARD FOOTER */
footer .card,
.bg-white.border-top .card {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid #f3f3f3;
}

/* TEXT */
footer p,
footer .text-secondary,
.bg-white.border-top .text-secondary {
  color: #777 !important;
}

/* LINK */
footer a,
.bg-white.border-top a {
  transition: all 0.2s ease;
}

footer a:hover,
.bg-white.border-top a:hover {
  color: #111 !important;
  transform: translateX(2px);
}

/* BUTTON CTA */
footer .btn-dark {
  background: #111;
  border: none;
}

footer .btn-dark:hover {
  background: #333;
}

footer .btn-outline-secondary {
  border-color: #ddd;
  color: #555;
}

footer .btn-outline-secondary:hover {
  background: #f5f5f5;
  color: #111;
}

/* SECTION TITLE */
footer h6 {
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

/* SYSTEM INFO */
footer .small span {
  font-weight: 500;
}

/* RIGHT MENU SPACING */
footer .d-flex.flex-column a,
.bg-white.border-top .d-flex.flex-column a {
  padding: 2px 0;
}

/* LOGOUT BUTTON */
#logout2 {
  color: #888;
}

#logout2:hover {
  color: #111;
  text-decoration: underline;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  
  footer .card-body {
    padding: 20px !important;
  }

}


.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Aktif */
.status-active {
  background: #ecfdf5;
  color: #047857;
}

/* Tutup */
.status-closed {
  background: #fef2f2;
  color: #b91c1c;
}

/* Review */
.status-review {
  background: #f1f5f9;
  color: #475569;
}

.cta-premium {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid #f0f0f0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

/* PRIMARY CTA BUTTON (SOFT BLACK) */
.btn-cta-dark {
  background: #111;
  color: #fff;
  border-radius: 12px;
  transition: all 0.2s ease;
  border: 1px solid #111;
}

.btn-cta-dark:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

/* OUTLINE CTA (CLEAN PREMIUM) */
.btn-cta-outline {
  background: #fff;
  color: #333;
  border-radius: 12px;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}

.btn-cta-outline:hover {
  background: #f5f5f5;
  border-color: #ccc;
  transform: translateY(-1px);
}


/* =========================
   IKLAN SAYA DASHBOARD (COMPACT)
========================= */

.iklan-saya-dash table,
.iklan-saya-dash tr,
.iklan-saya-dash td {
  border: none !important;
  background: transparent !important;
}

.iklan-saya-dash .dash-table {
  border-collapse: separate;
  border-spacing: 0 12px; /* lebih rapat dari 15px */
}

/* =========================
   CARD
========================= */
.iklan-saya-dash .dash-item {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 6px;

  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;

  padding: 10px 10px;   /* diperkecil */
  min-height: 80px;     /* diperkecil */

  box-shadow: 0 2px 8px rgba(0,0,0,0.04);

  cursor: pointer;
  transition: all 0.2s ease;
}

/* hover effect */
.iklan-saya-dash .dash-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);

  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

/* =========================
   TITLE
========================= */
.iklan-saya-dash .dash-title {
  font-size: 15px;   /* diperkecil */
  font-weight: 400;
  color: #333;
  line-height: 1.35;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================
   META INFO
========================= */
.iklan-saya-dash .dash-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  font-size: 12px;   /* diperkecil */
  color: #6c757d;
}

/* =========================
   STATUS BADGE
========================= */
.iklan-saya-dash .dash-status {
  font-size: 11px;   /* diperkecil */
  padding: 2px 4px;
  border-radius: 7px;
  font-weight: 400;
}

/* ACTIVE */
.iklan-saya-dash .dash-status.active {
  background: #eafaf1;
  color: #1f9d55;
  border: 1px solid #eafaf1;
}

/* CLOSED */
.iklan-saya-dash .dash-status.closed {
  background: #f1f3f5;
  color: red;
  border: 1px solid #f1f3f5;
}

/* REVIEW */
.iklan-saya-dash .dash-status.review {
  background: #f2f2f2;
  color: #444;
  border: 1px solid #f2f2f2;
}

/* TOLAK */
.iklan-saya-dash .dash-status.tolak {
  background: #f2f2f2;
  color: orange;
  border: 1px solid #f2f2f2;
}

/* =========================
   FOOTER
========================= */
.iklan-saya-dash .dash-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 5px; /* diperkecil */
}

/* EXP DATE */
.iklan-saya-dash .dash-close-date {
  font-size: 12px;
  font-weight: 400;

  padding: 5px 8px;
  border-radius: 7px;

  background: #f8f9fa;
  border: 1px solid #e9ecef;

  color: #495057;

  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* =========================
   ACTION BUTTONS
========================= */
.iklan-saya-dash .dash-footer-right {
  display: flex;
  gap: 15px;
}

.iklan-saya-dash .btn-action {
  width: 30px;   /* diperkecil */
  height: 30px;

  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;

  transition: all 0.15s ease;
}

.iklan-saya-dash .btn-action:hover {
  background: #f8f9fa;
  transform: scale(1.04);
}

/* delete button */
.iklan-saya-dash .btn-action.text-danger {
  color: #dc3545;
}

.iklan-saya-dash .btn-action.text-danger:hover {
  background: #fff5f5;
  border-color: #ffc9c9;
}

/* =========================
   OUTER PADDING
========================= */
.iklan-saya-dash {
  padding: 4px;
}


/* MENU BAWAH -----*/

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 999;
}

.bottom-nav .nav-item {
    text-align: center;
    font-size: 12px;
    color: #666;
    font-weight: 700;
    text-decoration: none;
}

.bottom-nav .nav-item i {
    display: block;
    font-size: 20px;
}

.bottom-nav .nav-item.active {
    color: #0d6efd;
}


/* textarea */

/* WRAPPER */
.form-group-mobile {
  margin-bottom: 16px;
}

/* LABEL */
.label-mobile {
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* BADGE */
.badge-soft {
  font-size: 10px;
  background: #f1f3f5;
  color: #495057;
  padding: 2px 6px;
  border-radius: 6px;
}

/* TEXTAREA - MOBILE FIRST */
.textarea-mobile {
  width: 100%;
  min-height: 80px;

  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.5;

  border-radius: 10px;
  border: 1px solid #e9ecef;
  background: #fff;

  resize: none;
  outline: none;

  transition: all 0.15s ease;
}

/* FOCUS */
.textarea-mobile:focus {
  border-color: #212529;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* HINT */
.form-hint {
  font-size: 11px;
  color: #868e96;
  margin-top: 4px;
}

/* DESKTOP */
@media (min-width: 768px) {

  .textarea-mobile {
    min-height: 140px;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 12px;
    resize: vertical;
  }

  .form-group-mobile {
    max-width: 600px;
  }

}

/* =========================
   FORM DASH (SCOPED)
========================= */

.form-dash .fd-group {
  margin-bottom: 16px;
}

/* LABEL */
.form-dash .fd-label {
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 6px;
  display: block;
}

/* GROUP */
.form-dash .fd-gaji {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ITEM */
.form-dash .fd-item {
  display: flex;
  align-items: center;

  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 0 10px;
  background: #fff;
}

/* RP */
.form-dash .fd-item span {
  font-size: 13px;
  color: #6c757d;
  margin-right: 6px;
}

/* INPUT */
.form-dash .fd-item input {
  border: none;
  outline: none;
  width: 100%;
  padding: 10px 0;
  font-size: 14px;
  background: transparent;
}

/* SEPARATOR */
.form-dash .fd-sep {
  display: none;
}

/* HINT */
.form-dash .fd-hint {
  font-size: 11px;
  color: #868e96;
  margin-top: 4px;
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 768px) {

  .form-dash .fd-gaji {
    flex-direction: row;
    align-items: center;
  }

  .form-dash .fd-item {
    flex: 1;
  }

  .form-dash .fd-sep {
    display: block;
    font-size: 14px;
    color: #868e96;
  }

}


/* DATE CKLIK */


.clickable-input {
  cursor: pointer;
}

/* biar seluruh area terasa satu komponen */
.clickable-input .input-group-text,
.clickable-input .form-control {
  cursor: pointer;
}

/* hover effect biar user paham ini clickable */
.clickable-input:hover {
  box-shadow: 0 0 0 3px rgba(13,110,253,0.08);
  border-radius: 8px;
}

.kategori-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.chip-kategori {
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  flex-shrink: 0;
}

.chip-kategori.active {
  background: #000;
  color: #fff;
  border-color: #000;
}


/* ========================
   WRAPPER
======================== */
.job-landing {
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


/* ========================
   SPACING GLOBAL
======================== */
.job-landing h3,
.job-landing h4,
.job-landing h5 {
  letter-spacing: -0.2px;
}

.job-landing .mb-5 {
  margin-bottom: 2rem !important;
}


/* ========================
   HERO
======================== */
.job-landing .jl-hero {
  background: linear-gradient(135deg, #ffffff, #f3f4f6);
  border-radius: 16px;
  border: 1px solid #eee;
}

.job-landing .jl-hero h3 {
  line-height: 1.3;
}


/* ========================
   TEXT
======================== */
.job-landing .jl-text {
  color: #374151;
  line-height: 1.6;
}

.job-landing .jl-muted {
  color: #6b7280;
}


/* ========================
   CARD
======================== */
.job-landing .jl-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 
  0 1px 2px rgba(0,0,0,0.06),
  0 6px 12px rgba(0,0,0,0.08);
}


/* ========================
   STAT
======================== */
.job-landing .jl-stat {
  text-align: left;
}


/* ========================
   TESTIMONI
======================== */
.job-landing .jl-testi {
  transition: all .2s ease;
}

.job-landing .jl-testi:hover {
  transform: translateY(-3px);
}

.job-landing .jl-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.job-landing .jl-testi .text-warning {
  font-size: 12px;
}


/* ========================
   CTA
======================== */
.job-landing .jl-cta {
  background: linear-gradient(135deg, #111, #2b2b2b);
  color: #fff;
  border-radius: 16px;
}

.job-landing .jl-cta h5 {
  color: #fff;
}

.job-landing .jl-cta .jl-muted {
  color: rgba(255,255,255,0.7);
}


/* ========================
   BUTTON
======================== */
.job-landing .btn {
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 500;
}

.job-landing .jl-btn-dark {
  background: #111;
  color: #fff;
  border: none;
}

.job-landing .jl-btn-dark:hover {
  background: #000;
}

.job-landing .jl-btn-light {
  background: #fff;
  color: #111;
  border: none;
}

.job-landing .jl-btn-outline {
  border: 1px solid #ddd;
  color: #111;
  background: transparent;
}

.job-landing .jl-btn-outline-white {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}


/* ========================
   FEATURE
======================== */
.job-landing .jl-feature {
  background: #f9fafb;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all .2s ease;
  font-size: 14px;
}

.job-landing .jl-feature i {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.job-landing .jl-feature:hover {
  background: #f3f4f6;
}


/* ========================
   ACCORDION FIX
======================== */
.job-landing .accordion-item {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}

.job-landing .accordion-button {
  background: #fff;
  font-size: 14px;
  padding: 14px;
  box-shadow: none;
}

.job-landing .accordion-button:not(.collapsed) {
  background: #f9fafb;
  color: #111;
}

.job-landing .accordion-body {
  font-size: 14px;
  padding: 14px;
}


/* ========================
   IMAGE FIX
======================== */
.job-landing img {
  max-width: 100%;
  display: block;
}


/* ========================
   BOTTOM NAV (FIXED CLEAN)
======================== */
.job-landing .jl-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #eee;
  z-index: 999;
}

.job-landing .jl-bottom-inner {
  max-width: 600px;
  margin: auto;
}

.job-landing .jl-bottom .btn {
  height: 48px;
  font-size: 14px;
}