.em-mwai-contact-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 5px;
}

.mwai-chatgpt-theme .em-mwai-contact-button {

    appearance: none;
    -webkit-appearance: none;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 210px;
    padding: 12px 24px;

    background: #161616 !important;
    color: #ffffff !important;

    border: 1px solid #161616 !important;
    border-radius: 30px !important;

    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;

    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease;

    box-sizing: border-box;
}

.mwai-chatgpt-theme .em-mwai-contact-button:hover,
.mwai-chatgpt-theme .em-mwai-contact-button:focus-visible {

    background: #ffffff !important;
    color: #161616 !important;
    border-color: #161616 !important;

}

.mwai-chatgpt-theme .em-mwai-contact-button:focus-visible {

    outline: 2px solid #161616;
    outline-offset: 2px;

}

.mwai-chatgpt-theme .em-mwai-contact-button:disabled {

    cursor: wait;
    opacity: 0.65;

}

@media (max-width: 480px) {

    .mwai-chatgpt-theme .em-mwai-contact-button {

        width: 100%;
        min-width: auto;

    }

}