/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 28 2025 | 11:42:32 */
/* Container do menu */
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px; /* Espaço entre os botões */
  padding: 10px;
  background-color: #f5f5f5; /* Opcional */
  flex-wrap: nowrap; /* Garante que fique em linha */
}

/* Estilo dos botões do menu */
.menu button {
  flex: 1; /* Todos ocupam espaço igual */
  text-align: center;
  padding: 12px 0;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  min-width: 0; /* Garante que o flex funcione corretamente */
}

/* Efeito hover */
.menu button:hover {
  background-color: #0056b3;
}


