body {
    background: #F7F9FC;
    color: #0F172A;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.app-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: #FFFFFF;
    border-right: 1px solid #E2E8F0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

.main-content {
    margin-left: 260px;
    width: calc(100% - 260px);
    min-height: 100vh;
}

.topbar {
    height: 72px;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.page-content {
    padding: 24px;
}

.app-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 12px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
}

.sidebar-link.active,
.sidebar-link:hover {
    background: #EFF6FF;
    color: #2563EB;
}

.status-badge {
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success-soft {
    background: #ECFDF5;
    color: #16A34A;
}

.badge-warning-soft {
    background: #FFF7ED;
    color: #F59E0B;
}

.badge-danger-soft {
    background: #FEF2F2;
    color: #DC2626;
}

.badge-info-soft {
    background: #EFF6FF;
    color: #2563EB;
}

.template-card {
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    transition: all 0.2s ease;
}

.template-card:hover,
.template-card.selected {
    border-color: #2563EB;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
}

.editor-sidebar {
    position: sticky;
    top: 96px;
}

.public-blog-hero {
    background: linear-gradient(135deg, #EFF6FF, #FFFFFF);
    border-radius: 28px;
    padding: 56px 32px;
}

@media (max-width: 991px) {
    .sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .page-content {
        padding: 16px;
    }

    .editor-sidebar {
        position: static;
    }
}

