/* Resetting some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Container for the whole app */
  .container {
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Heading */
  h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Status text */
  p {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
  }
  
  /* Button styles */
  button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 10px 0;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  button:disabled {
    background-color: #bdbdbd;
    cursor: not-allowed;
  }
  
  /* Input fields */
  input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  /* Make the "Cancel" button red */
  button.cancel {
    background-color: #f44336;
  }
  
  button.cancel:hover {
    background-color: #e53935;
  }
  
  /* Specific for send and sign view */
  button.openView {
    background-color: #2196f3;
  }
  
  button.openView:hover {
    background-color: #1976d2;
  }
  
  /* Make the section inside sendView and signView distinct */
  .send-view, .sign-view {
    width: 100%;
    padding: 15px;
    background-color: #fafafa;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  /* Styling for the transaction status and error message */
  .alert-message {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 10px;
  }
  /* WalletConnect.css */

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: auto;
  }
  
  h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 16px;
    margin: 5px 0;
  }
  
  input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:disabled {
    background-color: #ccc;
  }
  
  button:hover:enabled {
    background-color: #45a049;
  }
  
  /* Add margin between buttons for spacing */
  button:not(:last-child) {
    margin-bottom: 10px;
  }
  
  /* Style for the Cancel buttons */
  button[type="button"] {
    background-color: #f44336;
  }
  
  button[type="button"]:hover {
    background-color: #e53935;
  }
  