.prompt-copy-block {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
}

.prompt-copy-block__textarea {
    background: #ffffff;
    border: 1px solid #c7d7fe;
    border-radius: 7px;
    color: #101828;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    min-height: 130px;
    padding: 12px;
    resize: vertical;
    width: 100%;
}

.prompt-copy-block__textarea:focus {
    border-color: #155eef;
    box-shadow: 0 0 0 3px rgba(21, 94, 239, .14);
    outline: none;
}

.prompt-copy-block__button {
    align-items: center;
    background: #155eef;
    border: 0;
    border-radius: 7px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 850;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    transition: background .16s ease, transform .16s ease;
    width: 100%;
}

.prompt-copy-block__button:hover,
.prompt-copy-block__button:focus-visible {
    background: #004eeb;
    outline: none;
    transform: translateY(-1px);
}

.prompt-copy-block__button.is-copied {
    background: #067647;
}
