/* CSS for buttons */
.button-74 {
  background-color: #fbeee0;
  border: 2px solid #422800;
  border-radius: 30px;
  box-shadow: #422800 4px 4px 0 0;
  color: #422800;
  cursor: pointer;
  display: block; /* Changed to block to stack buttons one after another */
  font-weight: 600;
  font-size: 18px;
  padding: 0 18px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin: 10px auto; /* Center align with margin */
  width: 200px; /* Set a fixed width for buttons */
}

/* Center container */
.cosmic-tools-container {
  text-align: center;
}

/* CSS for toast notification */
#toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(40, 167, 69, 0.8); /* Transparent background */
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    display: none;
    opacity: 0.9;
    text-align: center; /* Center align text */
}
