.speech-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.speech-wrapper textarea {
    width: 100%;
    padding-right: 45px;
    box-sizing: border-box;
}

.speech-button {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--umentor-color-primary);
    color: white;
    outline: none;
}

.speech-button svg {
    width: 18px;
    height: 18px;
    display: block;
}

.speech-button:hover {
    background: #ddd;
}

.speech-button:focus {
    outline: none;
    box-shadow: none;
}

.speech-button.recording {
    background: #ff4d4d;
    color: white;
}


