.mwai-conversation .read-aloud-button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: rgb(0, 115, 170) !important;
    color: white;
    border: none;
    cursor: pointer;
}
.mwai-conversation .stop-button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: rgb(217, 83, 79) !important;
    color: white;
    border: none;
    cursor: pointer;
    display: none;
}
.home main.wp-block-group {
    margin-top: 30px !important;
}
.home main.wp-block-group h1 {
    margin-bottom: 30px !important;
    font-size: 39px;
    text-align: center;
}
.home .mwai-chatbot-container .mwai-icon-container {
    display: none;
}
/* Spinner styling */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: none; /* Initially hidden */
    margin: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}