/* Styles pour les boutons Bug et Tu-Thot-riel */
.bug-tutorial-container {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 10px;
}

.bug-tutorial-container a:hover {
    font-size: 12px;
  }
  

.bug-button {
  text-decoration: none;
  color: white;
  background-color: #dc3545;
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease;
}

.bug-button:hover {
  background-color: #c82333;
  color: white;
  text-decoration: none;
}

.bug-button .bug-icon {
  font-size: 14px;
}

.tutorial-button {
  text-decoration: none;
  color: white;
  background-color: #000;
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease;
}

.tutorial-button:hover {
  background-color: #333;
  color: white;
  text-decoration: none;
}

.tutorial-button .tutorial-icon {
  width: 14px;
  height: 14px;
} 