.button-ai { /* Your button styling properties */ background-color: #007bff; color: #ffffff; padding: 10px 20px; border: none; border-radius: 5px; font-size: 16px; cursor: pointer; }
.button-ai:hover { /* Hover effect */ background-color: #0056b3; }
.button-ai:active { /* Active state effect */ background-color: #003366; }
.button-ai:focus { /* Focus state effect */ outline: none; box-shadow: 0 0 5px #007bff; }
.button-ai:disabled { /* Disabled state effect */ opacity: 0.5; cursor: not-allowed; }