#generate-btn {
    padding: 14px 32px;
    margin-bottom: 24px;
    font-family: 'Saira', sans-serif;
    font-size: 18px;
    color: #2a2a2a;
    background-color: #eaeaea;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.03);
    transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
    animation: pulse 2s infinite;
  }
  
  #generate-btn:hover {
    background-color: #fdfdfd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  }

  #generate-btn:active {
    transform: scale(0.97);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.15);
  }
  
  
  .btn-icon {
    font-size: 18px;
    color: #555;
  }
  

  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 6px rgba(255, 255, 255, 0.03);
    }
    50% {
      box-shadow: 0 0 12px rgba(255, 255, 255, 0.06);
    }
    100% {
      box-shadow: 0 0 6px rgba(255, 255, 255, 0.03);
    }
  }
  