/* Style for the AI response container */
.ai-response-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
  justify-content: space-evenly;
}

/* Style for the audio controls */
audio {
    width: 100%;
    max-width: 300px; /* Adjust the maximum width as needed */
}

/* Style for the icons container */
.icons-container {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 10px;
}

/* Style for the copy and download buttons */
.copy-button,
.download-button {
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.copy-button:hover,
.download-button:hover {
    background-color: #0056b3;
}

/* Add some margin between the buttons */
.copy-button + .download-button {
    margin-left: 10px;
}

.aiIcons {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}