/**
 * Skip The Read - LLM Chat block styles.
 *
 * Theme-neutral: uses currentColor + semi-transparent layers so the block
 * inherits the surrounding text color and reads cleanly on light, dark, or
 * colored theme backgrounds. No prefers-color-scheme branching.
 */

.str-llm-block {
    margin: 1.5em 0;
    padding: 16px 18px;
    border: 1px solid currentColor;
    border-color: rgba(127, 127, 127, 0.35);
    border-radius: 12px;
    background: rgba(127, 127, 127, 0.06);
    color: inherit;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.str-llm-block__heading {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: inherit;
    opacity: 0.9;
}

.str-llm-block__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.str-llm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(127, 127, 127, 0.45);
    border-radius: 999px;
    background: rgba(127, 127, 127, 0.08);
    color: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
}

.str-llm-btn:hover,
.str-llm-btn:focus-visible {
    transform: translateY(-1px);
    background: rgba(127, 127, 127, 0.18);
    border-color: rgba(127, 127, 127, 0.7);
    text-decoration: none !important;
}

.str-llm-btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.str-llm-btn__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.str-llm-btn__logo svg {
    width: 100%;
    height: 100%;
    display: block;
}

.str-llm-btn__label {
    white-space: nowrap;
    color: inherit;
}

/* "Copied!" pill that fades over the label after the share button is clicked */
.str-llm-btn--share .str-llm-btn__copied {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    background: rgba(40, 167, 96, 0.95);
    color: #fff;
    font-weight: 600;
    o
