.wcp-tooltip {
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    transition: opacity .3s ease;
    opacity: 1;
    z-index: 9999;
}
.wcp-tooltip.fadeout {
    opacity: 0;
}

/* Inline mode (show-the-code) */
.clipsnco-inline-wrap {
    position: relative;
    margin: 1em 0;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    background: #f6f8fa;
    overflow: hidden;
}
.clipsnco-inline-toolbar {
    display: flex;
    justify-content: flex-end;
    padding: 6px 8px;
    background: #ececec;
    border-bottom: 1px solid #e1e4e8;
}
.clipsnco-inline-toolbar .wcp-code-copy-btn {
    font-size: 12px;
    padding: 4px 10px;
    cursor: pointer;
    border: 1px solid #c8ccd0;
    background: #fff;
    border-radius: 4px;
}
.clipsnco-inline-toolbar .wcp-code-copy-btn:hover {
    background: #f0f0f0;
}
.clipsnco-pre {
    margin: 0;
    padding: 12px 14px;
    overflow-x: auto;
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 13px;
    line-height: 1.5;
    color: #24292e;
    background: transparent;
    white-space: pre;
}
.clipsnco-pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

/* Gutenberg block editor preview */
.clipsnco-block-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border: 1px dashed #c8ccd0;
    border-radius: 6px;
    background: #f6f8fa;
    color: #24292e;
    font-size: 13px;
}
.clipsnco-block-preview .clipsnco-block-title {
    font-weight: 600;
}
.clipsnco-block-preview .clipsnco-block-meta {
    color: #6a737d;
}
