/* Font Google - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

$this->addStyle('custom-style', 'styles/custom.css');


/* Terapkan font Poppins ke semua elemen utama */
body, h1, h2, h3, h4, h5, h6, p, a, span, div {
    font-family: 'Poppins', sans-serif !important;
}

body {
    font-family: "Poppins", Calibri, Candara, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}


.media-heading h1, .media-heading h2, .media-heading h3, .media-heading h4, .media-heading h5, .media-heading h6, h1.media-heading, h2.media-heading, h3.media-heading, h4.media-heading, h5.media-heading, h6.media-heading {
    font-size: 17px;
    font-family: "Poppins", sans-serif !important;
}

a {
    color: #184d47;
    text-decoration: none;
}

.issue-toc .media-body .meta {
    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;
    color: #222 !important;
}

.menu:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  cursor: pointer;
}


/*------------------------------------------TABEL IMPRINT ------------------------------------------------------------------*/

table.zebra {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  max-width: 100%;
}

/* Header */
table.zebra thead tr th {
  background-color: #222;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  border-bottom: 4px solid #555;
}

/* Isi tabel */
table.zebra td {
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
  text-align: left;
  color: #000; /* <-- Ubah dari #003366 menjadi hitam */
  font-weight: 600;
}

/* Baris zebra */
table.zebra tr:nth-child(even) td {
  background-color: #f9f9f9;
}

table.zebra tr:nth-child(odd) td {
  background-color: #ffffff;
}

/* Hanya hyperlink yang berwarna biru tua */
table.zebra td a {
  color: #184d47;
  text-decoration: none;
  font-weight: 600;
}

table.zebra td a:hover {
  text-decoration: underline;
}

table.zebra td:first-child {
  padding-right: 12px;
  white-space: nowrap;
  vertical-align: top;
}

table.zebra td:last-child {
  padding-left: 12px;
}


/*------------------------------------------NAVIGASI MENU ------------------------------------------------------------------*/

/* Warna latar navigasi utama jadi hijau tua */
.navbar, .navbar-default, .pkp_structure_head, .pkp_site_nav, .pkp_navigation_primary_row {
  background-color: #184d47 !important;
}

/* Warna teks menu jadi putih */
.navbar a, 
.navbar-default .navbar-nav > li > a, 
.pkp_site_nav a, 
.pkp_navigation_primary_row a {
  color: #ffffff !important;
}

/* Hover menu */
.navbar a:hover,
.pkp_site_nav a:hover,
.pkp_navigation_primary_row a:hover {
  background-color: #227c70 !important; /* hijau lembut */
  color: #ffffff !important;
}

/* Dropdown menu item text menjadi hitam */
.navbar-default .dropdown-menu > li > a,
.pkp_site_nav .dropdown-menu > li > a {
  color: #000000 !important;
}

/* Hover pada dropdown item tetap terlihat baik */
.navbar-default .dropdown-menu > li > a:hover,
.pkp_site_nav .dropdown-menu > li > a:hover {
  background-color: #184d47 !important;
  color: #ffffff !important;
}
/*------------------------------------------TOMBOL PDF ARTIKEL ------------------------------------------------------------------*/

/*Tombol PDF*/
.btn-group > .btn:first-child {
  background-color: #fff; /* ganti dengan warna sesuai tema */
  color: #222;
  font-weight: 600;
  border-radius: 8px; /* sudut lebih membulat di kiri */
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0,123,255,0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
   border: 2px solid #222; /* hilangkan border default */
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-group > .btn:first-child:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0,86,179,0.5);
}

.btn-primary {
    color: #fff;
    background-color: #222;
    border-color: #2780e3;
}

.btn-default, .pkp_block.block_make_submission a {
    color: #000000;
    background-color: #ffffff;
    border-color: #000000;
}


/*------------------------------------------EFFECT IMAGE ------------------------------------------------------------------*/


/*img efect*/
.img-sidebar {
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-sidebar:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  cursor: pointer;
}


.menu:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  cursor: pointer;
}

