﻿/* 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_btn_busy { opacity: 0.55; cursor: wait; }

.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_video_wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    margin: 0.5rem 0;
    overflow: hidden;
    border-radius: 6px;
    background: #111;
}

.bbcode_content .bbcode_video_iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.bbcode_content .bbcode_list {
    padding-left: 1.5rem;
    margin: 0.4rem 0;
}


.bbcode_media_panel {
    padding: 8px;
    border: 1px solid rgba(0,0,0,0.12);
    border-bottom: none;
    background: rgba(0,0,0,0.035);
}

.bbcode_video_row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bbcode_video_row .material-symbols-outlined {
    font-size: 18px;
    flex-shrink: 0;
}

.bbcode_video_url {
    flex: 1;
}

.bbcode_video_clear .material-symbols-outlined {
    font-size: 16px;
    display: block;
}

.bbcode_video_preview {
    margin-top: 8px;
}

.bbcode_video_preview_card {
    position: relative;
    width: min(260px, 100%);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    background: #161622;
    color: #fff;
}

.bbcode_video_preview_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bbcode_video_preview_play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.bbcode_video_preview_badge {
    position: absolute;
    left: 8px;
    bottom: 8px;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(0,0,0,0.72);
    font-size: 0.75rem;
}

.bbcode_video_preview_empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 92px;
}

.bbcode_editor > textarea {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.bbcode_media_panel.hidden {
    display: none;
}

