.sidebar-menu {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.sidebar-menu .sidebar-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 5px;
  text-align: center;
}
.sidebar-menu .sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-menu .sidebar-list li {
  margin: 8px 0;
}
.sidebar-menu .sidebar-list li a {
  text-decoration: none;
  color: #444;
  padding: 8px 10px;
  display: block;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.sidebar-menu .sidebar-list li a:hover {
  background: #4CAF50;
  color: #fff;
}

/* Container */
.journal-info {
  margin: 15px 0;
  padding: 10px;
  font-size: 14px;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

/* Judul */
.journal-info .journal-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 5px;
  color: #333;
}

/* Tabel */
.journal-info .info-table {
  width: 100%;
  border-collapse: collapse;
}

.journal-info .info-table td {
  padding: 8px 6px;
  vertical-align: top;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease;
}

/* Kolom kiri */
.journal-info .info-label {
  width: 35%;
  font-weight: bold;
  color: #222;
}

/* Kolom kanan */
.journal-info .info-value {
  color: #444;
}

/* Hover effect */
.journal-info .info-table tr:hover td {
  background-color: #e8f5e9;
}

/* Hilangkan border terakhir */
.journal-info .info-table tr:last-child td {
  border-bottom: none;
}

/* Tabel Reviewer */
.reviewer-table {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

/* Judul tabel */
.reviewer-table .table-title {
  padding: 12px;
  color: white;
  font-weight: bold;
  text-align: center;
  /*background-color: #E9002A; red*/
  background-color: #06B000;
}

/* Header */
.reviewer-table .table-header {
  border-bottom: 1px solid #ddd;
  padding: 10px;
  background-color: #34495e;
  color: white;
  font-weight: bold;
  text-align: center;
}

.reviewer-table .table-header.no {
  width: 5%;
}
.reviewer-table .table-header:nth-child(2) { width: 25%; }
.reviewer-table .table-header:nth-child(3) { width: 30%; }
.reviewer-table .table-header:nth-child(4),
.reviewer-table .table-header:nth-child(5) {
  width: 20%;
}

/* Sel isi tabel */
.reviewer-table .table-cell {
  border-bottom: 1px dotted #ddd;
  padding: 10px;
  color: #333;
}
.reviewer-table .table-cell.center {
  text-align: center;
}

/* Link */
.reviewer-table .table-cell a {
  color: #2980b9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.reviewer-table .table-cell a:hover {
  color: #1c5d99;
}
/* Akhir Tabel Reviewer */

/*Etika Publikasi*/
.etika-publikasi {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 20px 0;
  text-align: justify;
}

.etika-publikasi h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2c3e50;
}

.etika-publikasi h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 18px 0 10px;
  color: #34495e;
}

.etika-publikasi h4 {
  font-size: 15px;
  font-weight: bold;
  margin: 12px 0 6px;
  color: #16a085;
}

/* Tabel */
.etika-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 13px;
}

.etika-table th {
  background-color: #16a085;
  color: #fff;
  padding: 8px;
  text-align: left;
  font-weight: bold;
}

.etika-table td {
  border: 1px solid #ddd;
  padding: 8px;
  vertical-align: top;
}

/* Hover effect */
.etika-table tr:hover {
  background-color: #f9f9f9;
}
/*Akhir Etika Publikasi*/

/*Statistik*/
/* Statistik Pengunjung */
.visitor-stats-box {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    background-color: #f9f9f9;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.visitor-stats-title {
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.visitor-stats-image {
    max-width: 100%;
    height: auto;
    border: none;
}

.visitor-stats-note {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}
/*Akhir Statistik*/

/*Daftar Artikel*/
/* === Daftar Artikel di Halaman Issue === */
.obj_article_summary {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.obj_article_summary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-color: #4CAF50;
}

.obj_article_summary .title a {
  color: #2c3e50;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
}

.obj_article_summary .title a:hover {
  color: #f3390a;
}

.obj_article_summary .authors {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

.obj_article_summary .meta {
  font-size: 13px;
  color: #777;
  margin-top: 6px;
}

.obj_article_summary .galley-links a {
  display: inline-block;
  background: #4CAF50;
  color: white;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 5px;
  transition: background 0.3s ease;
}

.obj_article_summary .galley-links a:hover {
  background: #43a047;
}
/*Akhir Daftar Artikel*/