/* common/css/bbcode.css — BBCode toolbar + rendered output styles */

/* ── Toolbar ─────────────────────────────────────────────────────────────── */

.bbcode_toolbar {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    padding: 4px 6px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.12);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
}

.bbcode_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    min-height: 0;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    color: inherit;
    transition: background 0.12s;
}
.bbcode_btn:hover { background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.12); }
.bbcode_btn .material-symbols-outlined { font-size: 16px; }

.bbcode_sep {
    width: 1px;
    height: 18px;
    background: rgba(0,0,0,0.15);
    margin: 0 3px;
    flex-shrink: 0;
}

/* Round off the top of any textarea immediately following a toolbar */
.bbcode_toolbar + textarea {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

/* ── Rendered output — scope under .bbcode_content ──────────────────────── */

.bbcode_content .bbcode_pre {
    background: rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 0.6rem 0.9rem;
    overflow-x: auto;
    font-family: monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    white-space: pre;
    margin: 0.4rem 0;
}
.bbcode_content .bbcode_pre code { background: none; padding: 0; }

.bbcode_content .bbcode_quote {
    border-left: 3px solid var(--btn_primary_bg, #7c3aed);
    padding: 0.4rem 0.75rem;
    margin: 0.4rem 0;
    background: rgba(0,0,0,0.04);
    border-radius: 0 4px 4px 0;
}
.bbcode_content .bbcode_quote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 0.78rem;
    margin-bottom: 0.2rem;
    opacity: 0.65;
}

.bbcode_content .bbcode_img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 4px;
    display: block;
    margin: 0.4rem 0;
}

.bbcode_content .bbcode_list {
    padding-left: 1.5rem;
    margin: 0.4rem 0;
}
