.button:hover {
    background-color: #f2e8cb;
  }
  .button:disabled {
    color: #cccccc;
    border: 2px solid #e0e0e0;
    cursor: not-allowed;
    background-color: white;
  }
  .button:active {
    transform: translateY(2px);
    background-color: #e0e0e0;
  }