/* /Components/Layout/DarkModeToggle.razor.rz.scp.css */
.theme-toggle[b-0mr85z6pvw] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-left: auto;
}

.theme-toggle:hover[b-0mr85z6pvw] {
    background: var(--color-bg-subtle);
    transform: rotate(15deg);
}

.theme-toggle svg[b-0mr85z6pvw] {
    display: block;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-xnjzn563nr] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-xnjzn563nr] {
    flex: 1;
}

.sidebar[b-xnjzn563nr] {
    background: var(--color-bg);
    border-right: 1px solid var(--color-border);
}

@media (min-width: 641px) {
    .page[b-xnjzn563nr] {
        flex-direction: row;
    }

    .sidebar[b-xnjzn563nr] {
        width: 220px;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow-y: auto;
    }

    main[b-xnjzn563nr] {
        flex: 1;
        overflow-x: hidden;
    }
}

#blazor-error-ui[b-xnjzn563nr] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-xnjzn563nr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-header[b-p4w1wy3y8n] {
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
    background: linear-gradient(135deg, var(--color-bg-subtle) 0%, var(--color-bg) 100%);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.nav-header-bg[b-p4w1wy3y8n] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    pointer-events: none;
}

.nav-header[b-p4w1wy3y8n]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent) 50%, transparent);
    opacity: 0.3;
}

.brand-logo[b-p4w1wy3y8n] {
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 1;
}

.brand-name[b-p4w1wy3y8n] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.brand-logo:hover .brand-name[b-p4w1wy3y8n] {
    color: var(--color-accent);
    transform: translateY(-1px);
}

.nav-menu[b-p4w1wy3y8n] {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-subtle) 100%);
}

.nav-text[b-p4w1wy3y8n] {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav-link[b-p4w1wy3y8n] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 2px 12px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 8px;
}

.nav-link[b-p4w1wy3y8n]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--color-accent);
    border-radius: 0 2px 2px 0;
    transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover[b-p4w1wy3y8n] {
    color: var(--color-text-primary);
    background-color: var(--color-bg-subtle);
    transform: translateX(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-link:hover[b-p4w1wy3y8n]::before {
    height: 60%;
}

.nav-link.active[b-p4w1wy3y8n] {
    color: var(--color-accent);
    background-color: rgba(37, 99, 235, 0.08);
    font-weight: 600;
    transform: translateX(4px);
}

.nav-link.active[b-p4w1wy3y8n]::before {
    height: 70%;
}

.nav-divider[b-p4w1wy3y8n] {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: var(--spacing-md) var(--spacing-lg);
}

.nav-actions[b-p4w1wy3y8n] {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

/* Mobile Menu Toggle */
.nav-toggle[b-p4w1wy3y8n] {
    display: none;
}

.nav-toggle-label[b-p4w1wy3y8n] {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: var(--spacing-xs);
    z-index: 100;
}

.nav-toggle-label span[b-p4w1wy3y8n] {
    display: block;
    background: var(--color-text-primary);
    height: 2px;
    width: 24px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .nav-toggle-label[b-p4w1wy3y8n] {
        display: flex;
    }

    .nav-menu[b-p4w1wy3y8n] {
        display: none;
    }

    .nav-wrapper:has(.nav-toggle:checked) .nav-menu[b-p4w1wy3y8n] {
        display: flex;
    }

    .nav-wrapper:has(.nav-toggle:checked) .nav-toggle-label span:nth-child(1)[b-p4w1wy3y8n] {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-wrapper:has(.nav-toggle:checked) .nav-toggle-label span:nth-child(2)[b-p4w1wy3y8n] {
        opacity: 0;
    }

    .nav-wrapper:has(.nav-toggle:checked) .nav-toggle-label span:nth-child(3)[b-p4w1wy3y8n] {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-w66szog1ik],
.components-reconnect-repeated-attempt-visible[b-w66szog1ik],
.components-reconnect-failed-visible[b-w66szog1ik],
.components-pause-visible[b-w66szog1ik],
.components-resume-failed-visible[b-w66szog1ik],
.components-rejoining-animation[b-w66szog1ik] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-w66szog1ik],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-w66szog1ik],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-w66szog1ik],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-w66szog1ik],
#components-reconnect-modal.components-reconnect-retrying[b-w66szog1ik],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-w66szog1ik],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-w66szog1ik],
#components-reconnect-modal.components-reconnect-failed[b-w66szog1ik],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-w66szog1ik] {
    display: block;
}


#components-reconnect-modal[b-w66szog1ik] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-w66szog1ik 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-w66szog1ik 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-w66szog1ik 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-w66szog1ik]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-w66szog1ik 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-w66szog1ik {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-w66szog1ik {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-w66szog1ik {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-w66szog1ik] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-w66szog1ik] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-w66szog1ik] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-w66szog1ik] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-w66szog1ik] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-w66szog1ik] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-w66szog1ik] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-w66szog1ik 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-w66szog1ik] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-w66szog1ik {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/AdminMetrics.razor.rz.scp.css */
.metrics-container[b-hz80aeho1c] {
    max-width: 1400px;
    margin: 0 auto;
}

.metrics-header[b-hz80aeho1c] {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metrics-title[b-hz80aeho1c] {
    margin: 0;
}

.metrics-card[b-hz80aeho1c] {
    background: var(--color-bg);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.metrics-table[b-hz80aeho1c] {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.table-responsive[b-hz80aeho1c] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.metrics-table thead[b-hz80aeho1c] {
    background: var(--color-bg-subtle);
    border-bottom: 2px solid var(--color-border);
}

.metrics-table thead th[b-hz80aeho1c] {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.metrics-table tbody tr[b-hz80aeho1c] {
    border-bottom: 1px solid var(--color-border);
}

.metrics-table td[b-hz80aeho1c] {
    padding: 1rem;
    vertical-align: middle;
}

.metrics-table td.text-center[b-hz80aeho1c] {
    text-align: center;
}

.metrics-value[b-hz80aeho1c] {
    font-weight: 600;
    font-size: 1.125rem;
}

.muted[b-hz80aeho1c] {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.stats-panel[b-hz80aeho1c] {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-bg-subtle);
    border-radius: 8px;
}

@media (max-width: 640px) {
    .metrics-header[b-hz80aeho1c] { gap: 0.5rem; }
    .nav-link[b-hz80aeho1c] { padding: 12px 18px; }
    .metrics-table td[b-hz80aeho1c] { padding: 0.75rem; }
    .stat-value[b-hz80aeho1c] { font-size: 1.5rem; }
}

.stat-label[b-hz80aeho1c] {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 0.25rem;
}

.stat-value[b-hz80aeho1c] {
    font-size: 2rem;
    font-weight: 600;
}

.stat-accent[b-hz80aeho1c] { color: var(--color-accent); }
.stat-success[b-hz80aeho1c] { color: var(--color-success); }
.stat-warning[b-hz80aeho1c] { color: var(--color-warning); }
.stat-muted[b-hz80aeho1c] { color: var(--color-muted); }
/* /Components/Pages/AuthorDashboard.razor.rz.scp.css */
.stat-card[b-l6f22xjv9o] {
    padding: 1.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover[b-l6f22xjv9o] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.create-post-btn[b-l6f22xjv9o] {
    padding: 0.75rem 1.5rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

.create-post-btn:hover[b-l6f22xjv9o] {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.action-btn[b-l6f22xjv9o] {
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.action-btn:hover[b-l6f22xjv9o] {
    opacity: 0.9;
    transform: translateY(-1px);
}

.action-btn-view[b-l6f22xjv9o] {
    background: var(--color-bg-subtle);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.action-btn-edit[b-l6f22xjv9o] {
    background: var(--color-accent);
    color: white;
}
/* /Components/Pages/Posts.razor.rz.scp.css */
.hero-banner[b-y3u202kkav] {
    position: relative;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 var(--spacing-xl) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.hero-overlay[b-y3u202kkav] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.5) 0%,
        rgba(15, 23, 42, 0.8) 100%
    );
}

.hero-content[b-y3u202kkav] {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: var(--spacing-lg);
}

.hero-tagline[b-y3u202kkav] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    /* Embroidered ink texture - increased to 5% opacity */
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0.05) 2px),
        repeating-linear-gradient(-45deg, transparent, transparent 1px, rgba(0, 0, 0, 0.05) 1px, rgba(0, 0, 0, 0.05) 2px);
    background-size: 3px 3px, 4px 4px;
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-subtitle[b-y3u202kkav] {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    font-weight: 400;
    margin: 0;
    color: white;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    /* Embroidered ink texture - increased to 5% opacity */
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0.05) 2px),
        repeating-linear-gradient(-45deg, transparent, transparent 1px, rgba(0, 0, 0, 0.05) 1px, rgba(0, 0, 0, 0.05) 2px);
    background-size: 3px 3px, 4px 4px;
    background-clip: text;
    -webkit-background-clip: text;
}

/* Post grid */
.post-grid[b-y3u202kkav] {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .post-grid[b-y3u202kkav] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Post grid */
.post-card-meta[b-y3u202kkav] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
}

.post-card-meta span[b-y3u202kkav] {
    display: inline-block;
}

.post-grid-footer[b-y3u202kkav] {
    margin-top: var(--spacing-lg);
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-banner[b-y3u202kkav] {
        min-height: 350px;
        margin-left: calc(var(--spacing-sm) * -1);
        margin-right: calc(var(--spacing-sm) * -1);
    }

    .hero-content[b-y3u202kkav] {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-banner[b-y3u202kkav] {
        min-height: 300px;
    }

    .post-card-meta[b-y3u202kkav] {
        font-size: 0.8125rem;
    }
}
/* /Components/Pages/Scribbles.razor.rz.scp.css */
.scribbles-page[b-9prvlq7ljl] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero */
.scribbles-hero[b-9prvlq7ljl] {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.scribbles-title[b-9prvlq7ljl] {
    font-family: var(--font-heading, Georgia, serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary, #1f2937);
    margin-bottom: 0.75rem;
}

.scribbles-subtitle[b-9prvlq7ljl] {
    font-size: 1.1rem;
    color: var(--color-text-secondary, #6b7280);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Scribble of the Day */
.scribble-of-the-day[b-9prvlq7ljl] {
    margin-bottom: 2.5rem;
    position: relative;
}

.sotd-label[b-9prvlq7ljl] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent, #8b5cf6);
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
}

.scribble-of-the-day[b-9prvlq7ljl]  .scribble-card {
    border-color: var(--color-accent, #8b5cf6);
    border-width: 2px;
    background: linear-gradient(135deg, var(--color-bg, #fff) 0%, rgba(139, 92, 246, 0.03) 100%);
}

/* Card grid */
.scribbles-masonry[b-9prvlq7ljl] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    align-items: start;
}

@media (max-width: 768px) {
    .scribbles-masonry[b-9prvlq7ljl] {
        grid-template-columns: 1fr;
    }

    .scribbles-title[b-9prvlq7ljl] {
        font-size: 1.75rem;
    }

    .scribbles-hero[b-9prvlq7ljl] {
        padding: 2rem 0.5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .scribbles-masonry[b-9prvlq7ljl] {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* /Components/ReactionButtons.razor.rz.scp.css */
.reaction-container[b-30u2kp6mo1] {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.reaction-title[b-30u2kp6mo1] {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-md) 0;
    color: var(--color-text-primary);
}

.reaction-buttons[b-30u2kp6mo1] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

@media (max-width: 640px) {
    .reaction-buttons[b-30u2kp6mo1] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reaction-btn[b-30u2kp6mo1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: var(--spacing-sm);
    background: var(--color-bg-subtle);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.reaction-btn:hover:not(:disabled)[b-30u2kp6mo1] {
    background: var(--color-bg);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reaction-btn:active:not(:disabled)[b-30u2kp6mo1] {
    transform: translateY(0);
}

.reaction-btn.active[b-30u2kp6mo1] {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.reaction-btn:disabled[b-30u2kp6mo1] {
    opacity: 0.6;
    cursor: not-allowed;
}

.reaction-emoji[b-30u2kp6mo1] {
    font-size: 2rem;
    line-height: 1;
}

.reaction-label[b-30u2kp6mo1] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.reaction-btn.active .reaction-label[b-30u2kp6mo1] {
    color: white;
}

.reaction-count[b-30u2kp6mo1] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 12px;
    min-width: 32px;
    text-align: center;
}

[data-theme="dark"] .reaction-count[b-30u2kp6mo1] {
    background: rgba(255, 255, 255, 0.1);
}

.reaction-btn.active .reaction-count[b-30u2kp6mo1] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}
/* /Components/ScribbleCard.razor.rz.scp.css */
.scribble-card[b-0coghh7j5y] {
    position: relative;
    overflow: hidden;
    background: var(--color-bg, #fff);
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 12px;
    padding: 1.75rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scribble-card:hover[b-0coghh7j5y] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.scribble-card.expanded[b-0coghh7j5y] {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent, #8b5cf6);
}

.scribble-card.expanded blockquote[b-0coghh7j5y] {
    font-size: 1.3rem;
}

.scribble-quote[b-0coghh7j5y] {
    position: relative;
    cursor: pointer;
}

.scribble-open-quote[b-0coghh7j5y],
.scribble-close-quote[b-0coghh7j5y] {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--color-accent, #8b5cf6);
    opacity: 0.3;
    user-select: none;
}

.scribble-open-quote[b-0coghh7j5y] {
    position: absolute;
    top: -0.5rem;
    left: -0.25rem;
}

.scribble-close-quote[b-0coghh7j5y] {
    display: inline;
    vertical-align: bottom;
}

.scribble-card blockquote[b-0coghh7j5y] {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-primary, #1f2937);
    margin: 0;
    padding: 0.75rem 0 0.25rem 1.5rem;
    border: none;
    font-style: italic;
}

/* Attribution */
.scribble-attribution[b-0coghh7j5y] {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-wrap: wrap;
    font-size: 0.925rem;
    color: var(--color-text-secondary, #6b7280);
    padding-left: 1.5rem;
}

.attribution-dash[b-0coghh7j5y] {
    color: var(--color-accent, #8b5cf6);
    font-weight: 600;
}

.attribution-author[b-0coghh7j5y],
.attribution-source-author[b-0coghh7j5y] {
    font-weight: 600;
    color: var(--color-text-primary, #1f2937);
    text-decoration: none;
}

.attribution-author:hover[b-0coghh7j5y] {
    color: var(--color-accent, #8b5cf6);
}

.attribution-source-title[b-0coghh7j5y] {
    font-style: italic;
    color: var(--color-text-secondary, #6b7280);
    text-decoration: none;
}

a.attribution-source-title:hover[b-0coghh7j5y] {
    color: var(--color-accent, #8b5cf6);
    text-decoration: underline;
}

.badge-original[b-0coghh7j5y] {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--color-accent, #8b5cf6);
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    margin-left: 0.25rem;
    vertical-align: middle;
}

/* Footer */
.scribble-footer[b-0coghh7j5y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border, #e5e7eb);
}

.scribble-meta[b-0coghh7j5y] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.825rem;
    color: var(--color-text-secondary, #6b7280);
}

.scribble-posted-by[b-0coghh7j5y] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.scribble-posted-by a[b-0coghh7j5y] {
    text-decoration: none;
    color: var(--color-text-secondary, #6b7280);
}

.scribble-posted-by a:hover[b-0coghh7j5y] {
    color: var(--color-accent, #8b5cf6);
}

.scribble-avatar[b-0coghh7j5y] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.scribble-date[b-0coghh7j5y] {
    opacity: 0.7;
}

.scribble-share-btn[b-0coghh7j5y] {
    background: none;
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 6px;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
    color: var(--color-text-secondary, #6b7280);
    transition: all 0.15s ease;
    font-size: 0.875rem;
}

.scribble-share-btn:hover[b-0coghh7j5y] {
    background: var(--color-bg-subtle, #f9fafb);
    color: var(--color-accent, #8b5cf6);
    border-color: var(--color-accent, #8b5cf6);
}

/* Share panel */
.scribble-share-panel[b-0coghh7j5y] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--color-border, #e5e7eb);
}

.share-platforms[b-0coghh7j5y] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-platform-btn[b-0coghh7j5y] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.share-platform-btn:hover[b-0coghh7j5y] {
    transform: scale(1.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-whatsapp[b-0coghh7j5y] {
    background: #25D366;
}

.share-twitter[b-0coghh7j5y] {
    background: #000;
}

.share-facebook[b-0coghh7j5y] {
    background: #1877F2;
}

.share-linkedin[b-0coghh7j5y] {
    background: #0A66C2;
}

.share-telegram[b-0coghh7j5y] {
    background: #26A5E4;
}

.share-actions[b-0coghh7j5y] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-action-btn[b-0coghh7j5y] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 6px;
    background: var(--color-bg-subtle, #f9fafb);
    color: var(--color-text-secondary, #6b7280);
    font-size: 0.825rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}

.share-action-btn:hover[b-0coghh7j5y] {
    background: var(--color-accent, #8b5cf6);
    color: #fff;
    border-color: var(--color-accent, #8b5cf6);
}

.share-action-primary[b-0coghh7j5y] {
    background: var(--color-accent, #8b5cf6);
    color: #fff;
    border-color: var(--color-accent, #8b5cf6);
}

.share-action-primary:hover[b-0coghh7j5y] {
    background: #7c3aed;
    border-color: #7c3aed;
}

/* Background image styles */
.scribble-bg-image[b-0coghh7j5y] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.scribble-bg-overlay[b-0coghh7j5y] {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
    pointer-events: none;
    z-index: 1;
}

.has-bg-image .scribble-quote[b-0coghh7j5y],
.has-bg-image .scribble-attribution[b-0coghh7j5y],
.has-bg-image .scribble-footer[b-0coghh7j5y],
.has-bg-image .scribble-share-panel[b-0coghh7j5y] {
    position: relative;
    z-index: 2;
}

.has-bg-image blockquote[b-0coghh7j5y],
.has-bg-image .scribble-open-quote[b-0coghh7j5y],
.has-bg-image .scribble-close-quote[b-0coghh7j5y] {
    color: #fff;
}

.has-bg-image .scribble-open-quote[b-0coghh7j5y],
.has-bg-image .scribble-close-quote[b-0coghh7j5y] {
    opacity: 0.5;
}

.has-bg-image .scribble-attribution[b-0coghh7j5y],
.has-bg-image .attribution-author[b-0coghh7j5y],
.has-bg-image .attribution-source-author[b-0coghh7j5y],
.has-bg-image .attribution-source-title[b-0coghh7j5y],
.has-bg-image .attribution-dash[b-0coghh7j5y] {
    color: rgba(255,255,255,0.9);
}

.has-bg-image .scribble-footer[b-0coghh7j5y] {
    border-top-color: rgba(255,255,255,0.2);
}

.has-bg-image .scribble-meta[b-0coghh7j5y],
.has-bg-image .scribble-date[b-0coghh7j5y],
.has-bg-image .scribble-posted-by a[b-0coghh7j5y] {
    color: rgba(255,255,255,0.8);
}

.has-bg-image .scribble-share-btn[b-0coghh7j5y] {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.3);
}

.has-bg-image .scribble-share-btn:hover[b-0coghh7j5y] {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.has-bg-image .badge-original[b-0coghh7j5y] {
    background: rgba(255,255,255,0.25);
}
