/* Logo */
.pkp_site_name .is_img img {
    display: inline-block;
    max-height: 150px;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Hilangkan brand footer OJS */
.pkp_brand_footer {
    display: none;
}

/* Area luar footer */
.pkp_structure_footer {
    background-color: #000000 !important;
    padding: 0;
    margin: 0;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

/* Isi footer */
.ojs-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    color: white;
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.6;
    background-color: transparent;
}

/* Container kolom */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Masing-masing kolom */
.footer-column {
    flex: 1 1 22%;
    min-width: 220px;
    padding-right: 10px;
    box-sizing: border-box;
}

/* Judul kolom */
.footer-column h4 {
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    font-size: 16px;
}

/* List dan link */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

/* Warna angka stat */
.footer-column ul li span,
.footer-column .analytics-number {
    color: yellow;
    font-weight: bold;
    font-size: 14px;
}

/* Link khusus analytics */
.footer-column ul li a.analytics-link {
    color: #e0e0e0;
    font-style: italic;
}

/* Responsive untuk layar kecil */
@media (max-width: 768px) {
    .footer-column {
        flex: 1 1 100%;
        min-width: unset;
        padding-right: 0;
    }
}
.license-info {
  margin-top: 10px;
}

.license-logo {
  height: 31px;
  margin-bottom: 6px;
}

.editorial-address {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
}

.editorial-address a {
  color: #81d4fa;
  text-decoration: none;
}

.editorial-address a:hover {
  text-decoration: underline;
}
/* ================================
   SAFE SIDEBAR DROPDOWN MENU STYLE
   ================================ */
.sidebar-dropdown {
  background: #000000;
  border: 3px solid #000000;
  border-radius: 8px;
  padding: 10px;
  font-family: inherit;
}

/* Setiap grup dropdown */
.sidebar-dropdown .dropdown {
  position: relative;
  display: block;
  margin-bottom: 8px;
}

/* Tombol dropdown */
.sidebar-dropdown .dropbtn {
  background-color: #ff7621;
  color: #ffffff;
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  transition: background 0.25s ease;
}

/* Saat diarahkan mouse */
.sidebar-dropdown .dropbtn:hover {
  background-color: #ff974d;
  color: #000000;
}

/* Isi dropdown (default tersembunyi) */
.sidebar-dropdown .dropdown-content {
  display: none;
  position: relative;
  background-color: #111111;
  border: 1px solid #ff7621;
  border-radius: 6px;
  margin-top: 6px;
  padding: 6px 0;
  width: 100%;
  z-index: 1;
}

/* Link di dalam dropdown */
.sidebar-dropdown .dropdown-content a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  background-color: #ff7621;
  text-align: center;
  margin: 5px 8px;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s ease;
  font-size: 14px;
}

/* Hover pada link */
.sidebar-dropdown .dropdown-content a:hover {
  background-color: #ff974d;
  color: #000000;
}

/* Efek hover tampilkan isi */
.sidebar-dropdown .dropdown:hover .dropdown-content {
  display: block;
}

/* Hover pada tombol utama */
.sidebar-dropdown .dropdown:hover .dropbtn {
  background-color: #ff974d;
  color: #000000;
}

/* Responsif */
@media (max-width: 768px) {
  .sidebar-dropdown .dropbtn {
    font-size: 15px;
    text-align: center;
  }
  .sidebar-dropdown .dropdown-content a {
    font-size: 15px;
  }
}
/* === ANIMASI HALUS UNTUK DROPDOWN SIDEBAR === */

/* Awal dropdown disembunyikan */
.sidebar-dropdown .dropdown-content {
  display: none !important;
  position: relative !important;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* Saat kursor diarahkan (hover), muncul perlahan */
.sidebar-dropdown .dropdown:hover .dropdown-content {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

/* Efek halus saat link di-hover */
.sidebar-dropdown .dropdown-content a {
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.sidebar-dropdown .dropdown-content a:hover {
  background-color: #ff974d;
  transform: translateX(3px);
}
/* === SHADOW LEMBUT UNTUK TOMBOL DROPDOWN SIDEBAR === */

/* Bayangan halus pada tombol utama */
.sidebar-dropdown .dropbtn {
  background-color: #ff7621;
  color: #ffffff;
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Saat diarahkan kursor */
.sidebar-dropdown .dropbtn:hover {
  background-color: #ff974d;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

/* Efek bayangan ringan untuk area dropdown */
.sidebar-dropdown .dropdown-content {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Saat dropdown muncul (hover) */
.sidebar-dropdown .dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0);
}

/* Bayangan lembut saat tautan di-hover */
.sidebar-dropdown .dropdown-content a:hover {
  background-color: #ff974d;
  color: #000000;
  transform: translateX(3px);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
}
/* === ICON KECIL UNTUK MENU UTAMA SIDEBAR === */

/* Style umum tombol dropdown */
.sidebar-dropdown .dropbtn {
  position: relative;
  padding-left: 32px; /* beri ruang di kiri untuk ikon */
}

/* Ikon dasar di kiri tombol */
.sidebar-dropdown .dropbtn::before {
  content: "📂"; /* default icon jika lupa set khusus */
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

/* Ikon khusus per menu */
.sidebar-dropdown .dropdown:nth-child(1) .dropbtn::before { content: "👥"; }      /* People */
.sidebar-dropdown .dropdown:nth-child(2) .dropbtn::before { content: "📝"; }      /* Submission */
.sidebar-dropdown .dropdown:nth-child(3) .dropbtn::before { content: "⚖️"; }     /* Policies */
.sidebar-dropdown .dropdown:nth-child(4) .dropbtn::before { content: "ℹ️"; }     /* Information */

/* Efek halus saat hover */
.sidebar-dropdown .dropbtn:hover::before {
  transform: translateY(-50%) scale(1.1);
  transition: transform 0.2s ease;
}

