/* === Vertical Menu Custom for OJS 3.4 === */

/* Bungkus menu vertikal */
.vertical-menu {
  width: 100%; /* Lebar menu */
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Style untuk setiap link di dalam menu */
.vertical-menu a {
  background-color: #6495ED !important; /* Warna dasar menu */
  color: black !important;               /* Warna teks */
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  font-family: Arial, sans-serif !important;
  font-size: 14px;
  border-bottom: 1px solid #ffffff40;
  transition: background-color 0.3s ease;
}

/* Efek hover ketika diarahkan mouse */
.vertical-menu a:hover {
  background-color: #cccccc !important; /* Warna saat hover */
  color: #000 !important;
}

/* Style untuk menu aktif (misal halaman saat ini) */
.vertical-menu a.active {
  background-color: #000080 !important; /* Warna aktif (header menu) */
  color: white !important;
  font-weight: bold;
}

/* Opsional: responsif di layar kecil */
@media screen and (max-width: 600px) {
  .vertical-menu a {
    font-size: 16px;
    padding: 14px;
  }
}
