.card-text span.command {
    background-color: rgba(114, 137, 218, 0.5);
    padding: 0 4px;
    border-radius: 5px;
    color: white;
    display: inline;
  }
  
  .verify-badge {
    background-image: linear-gradient(45deg, #895eff 0%, #b89fff 51%, #895eff 100%);
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center; /* Vertically centers the icon and text inside the badge */
    justify-content: center;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    vertical-align: middle; /* Ensures the badge aligns properly with the text */
  }
  
  .verify-badge:before {
    content: "✔";
    margin-right: 8px; /* Adjust spacing between the icon and text */
    font-size: 18px;
  }

  .gradient-t {
    background: linear-gradient(45deg, #895eff 0%, #b89fff 51%, #895eff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  ::selection {
    background-color: #b89fff;
    color: #fff;
  }
  
  ::-moz-selection {
    background-color: #b89fff;
    color: #fff;
  }
  
  