/* box-button untuk dokumentasi dll */
.box-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 500;
  color: #555;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 7px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.box-button:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

body.dark .box-button {
  background: #222;
  color: #eee;
  border: 1px solid #444;
  box-shadow: 0 2px 6px rgba(255,255,255,0.1);
}

body.dark .box-button:hover {
  background: #333;
}

.box-button:active {
  background: #000;
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Mode gelap */
body.dark .box-button:active {
  background: #111;
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(255,255,255,0.2);
}