.code-textarea {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2rem;
    gap: .5rem;
    align-items: start;
}

.code-textarea-content > textarea {
    width: 100%;
}

.code-textarea-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.code-textarea-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--color-primary);
}

.code-textarea-action svg {
    width: 25px;
    height: 16px;
    overflow: visible;
}

.code-textarea-action svg rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.code-textarea-action svg text {
    fill: currentColor;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 10px;
    font-weight: 700;
}
