.mwai-ask-buttons {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tippy-box[data-theme~='messages'] {
    background-color: #2439de;
    color: white;
}
.tippy-box[data-theme~='messages'][data-placement^='top'] > .tippy-arrow::before {
    border-top-color: #2439de;
}
.tippy-box[data-theme~='messages'][data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: #2439de;
}
.tippy-box[data-theme~='messages'][data-placement^='left'] > .tippy-arrow::before {
    border-left-color: #2439de;
}
.tippy-box[data-theme~='messages'][data-placement^='right'] > .tippy-arrow::before {
    border-right-color: #2439de;
}

.tippy-box[data-theme~='chatgpt'] {
    background-color: #fff18f;
    color: #404040;
    #border: 1px solid #40404011;
}
.tippy-box[data-theme~='chatgpt'][data-placement^='top'] > .tippy-arrow::before {
    border-top-color: #fff18f;
}
.tippy-box[data-theme~='chatgpt'][data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: #fff18f;
}
.tippy-box[data-theme~='chatgpt'][data-placement^='left'] > .tippy-arrow::before {
    border-left-color: #fff18f;
}
.tippy-box[data-theme~='chatgpt'][data-placement^='right'] > .tippy-arrow::before {
    border-right-color: #fff18f;
}

.mwai-ask-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px !important;
    border: 1px solid #ccc;
    border-radius: 4px !important;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
    width: unset !important;
    height: unset !important;
    min-height: unset !important;
	box-sizing: border-box !important;
}
.mwai-ask-button:hover {
    background-color: #e8e8e8;
}

.mwai-ask-button.dimmed {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

.mwai-ask-button-pressed {
	background-color: #595959;
	box-shadow: inset 0 1px 5px rgba(0,0,0,0.2);
	border: 1px solid #ffd75e;
	outline: 1px solid #ffd75e75;
}

.mwai-messages-theme .mwai-ask-button:hover {
    background-color: #009eff;
}

.mwai-messages-theme .mwai-ask-button-pressed {
    opacity: 0.5;
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.3) !important;
    border: unset !important;
    outline: unset !important;
}

.mwai-timeless-theme .mwai-ask-button-pressed {
    opacity: 0.5;
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.3) !important;
    border: unset !important;
    outline: unset !important;
    #background: linear-gradient(130deg, #000451 0%, #09a9f8 100%) !important;
}

.mwai-chatgpt-theme .mwai-ask-button-pressed {
	background-color: #595959 !important;
	box-shadow: inset 0 1px 5px rgba(0,0,0,0.2);
	border: 1px solid #ffd75e;
	outline: 1px solid #ffd75e75;
}

.mwai-ask-button-content {
    display: flex;
    align-items: center;
}

.mwai-ask-button-image {
    width: 24px;
    height: 24px;
    margin-right: 8px !important;
    border-radius: 50%;
    filter: unset !important;
}

.mwai-ask-button-text {
    font-size: 14px;
}

.mwai-ask-button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
