/* ============================================
   Empty Content State - Common Styles
   Used by: bookmarks.php, posts.php, flashes.php, media.php
   ============================================ */

/* Empty State Container */
.no-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 60px 20px;
    text-align: center;
}

.empty-state {
    max-width: 380px;
    width: 100%;
}

/* Icon Wrapper with Organic Blob Shape */
.empty-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 35% 65% 70% 30% / 30% 40% 60% 70%;
}

.empty-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: var(--text-secondary);
}

/* Typography */
.empty-state h3 {
    font-size: var(--font-22);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: var(--fontH);
}

.empty-state p {
    font-size: var(--font-15);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 24px;
    padding: 0 10px;
}

/* Dark theme overrides */
@media (prefers-color-scheme: dark) {
    :root:not(.light-theme) {
        --primary-color-rgb: 16, 131, 252;
    }
}