/* docs/.vuepress/styles/index.css */

/* ???? */
button.green-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button.green-button:hover {
  background-color: #45a049;
}

/* ???? */
button.blue-button {
  background-color: #007bff; /* ???? */
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button.blue-button:hover {
  background-color: #0056b3; /* ??????? */
}
