/* Import Font Awesome dari CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* Tambahkan ikon di depan tiap menu */
.block_custom p strong a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #003366; /* warna ikon */
}

/* Urutan ikon berdasarkan urutan paragraf */
.block_custom p:nth-of-type(1) strong a::before { content: "\f05a"; } /* fa-circle-info (About) */
.block_custom p:nth-of-type(2) strong a::before { content: "\f140"; } /* fa-bullseye (Focus & Scope) */
.block_custom p:nth-of-type(3) strong a::before { content: "\f46d"; } /* fa-clipboard-check (Peer Review) */
.block_custom p:nth-of-type(4) strong a::before { content: "\f4fc"; } /* fa-user-tie (Reviewer) */
.block_custom p:nth-of-type(5) strong a::before { content: "\f4ff"; } /* fa-user-pen (Authors Guidelines) */
.block_custom p:nth-of-type(6) strong a::before { content: "\f56c"; } /* fa-file-contract (Publication Ethics) */
.block_custom p:nth-of-type(7) strong a::before { content: "\f002"; } /* fa-magnifying-glass (Plagiarism Checker) */
.block_custom p:nth-of-type(8) strong a::before { content: "\f571"; } /* fa-file-invoice-dollar (APC) */
.block_custom p:nth-of-type(9) strong a::before { content: "\f518"; } /* fa-book-open (Section Policy) */
.block_custom p:nth-of-type(10) strong a::before { content: "\f56d"; } /* fa-paper-plane (Make a Submission) */

/* ====== STYLE UTAMA UNTUK SIDEBAR BOX ====== */
.pkp_block {
  background-color: #f8f9fc; /* abu muda lembut */
  border: 1px solid #d5d9e0; /* garis lembut */
  border-radius: 10px; /* sudut melengkung */
  padding: 10px 14px;
  margin-bottom: 18px;
  margin-left: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* bayangan halus */
}

/* ====== JUDUL BLOK (seperti Focus and Scope) ====== */
.pkp_block .title {
  background-color: #002855; /* biru tua senada header */
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 8px 8px 0 0;
  margin: -10px -14px 10px -14px; /* agar judul menempel ke tepi kotak */
  text-transform: none;
}

/* ====== ISI BLOK ====== */
.pkp_block .content {
  padding-top: 4px;
}

/* ====== TAMPILAN LINK DALAM BLOK ====== */
.pkp_block a {
  display: block;
  color: #002855;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.pkp_block a:hover {
  background-color: #004a99; /* biru lebih terang saat hover */
  color: #ffffff;
  padding-left: 12px; /* efek sedikit bergerak */
}

/* ====== UNTUK BLOK “MAKE A SUBMISSION” ====== */
.pkp_block a.btn-primary, 
.pkp_block a.make_submission_link {
  background-color: #004a99;
  color: #ffffff !important;
  font-weight: 600;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  display: block;
  transition: all 0.2s ease;
}

.pkp_block a.btn-primary:hover, 
.pkp_block a.make_submission_link:hover {
  background-color: #002855;
  text-decoration: none;
}

/* ====== RESPONSIVE (untuk tampilan mobile) ====== */
@media (max-width: 768px) {
  .pkp_block {
    margin-top: 10px;
  }
}

