

/* ================== Buttons & Menus ================== */

/* ===== Wiki Index Category Button ===== */

.button_WikiIndexCategory {
    cursor: pointer;
  }
  
  .button_WikiIndexCategory:hover {
    background-color: rgba(128, 128, 192, 0.30);
  }


  /* ===== Index Button ===== */
  .button_Index {
  color: rgb(220, 220, 220);
  background-color: blue;
  outline: 1px solid #4D4DFF;
  padding: 12px 16px; /* More breathing room */
  cursor: pointer;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  max-width: 128px;
  transition: all 0.3s ease; /* Smooth transitions */
  box-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Subtle depth */
}

.button_Index:hover {
  background-color: #4D4DFF;
  transform: translateY(-2px); /* Subtle lift effect */
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}







