.button-container {
    display: flex;
    flex-direction: column; /* change to column to align buttons vertically */
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-top: 10px;
  }
  
  .message-button {
    width: 80%;
    border: none;
    border-radius: 20px; /* increase border radius for rounded corners */
    padding: 10px 20px;
    margin-bottom: 5px;
    background-color: #008ece;
    color: white;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    font-weight: 600;
  }
    
  .message-button:hover {
    background-color: #007acc;
  }