/* ===========================
   Coloriz - Main Stylesheet
   Premium Creative Design
   =========================== */

:root {
    --c-primary: #7c3aed;
    --c-primary-light: #ede9fe;
    --c-primary-hover: #6d28d9;
    --c-accent: #f59e0b;
    --c-success: #10b981;
    --c-danger: #ef4444;
    --c-bg: #f8f7fc;
    --c-surface: #ffffff;
    --c-border: #e8e5f0;
    --c-text: #1e1b2e;
    --c-text-secondary: #6b6480;
    --c-text-muted: #9f97b8;
    --radius: 12px;
    --shadow-sm: 0 1px 3px rgba(124, 58, 237, 0.04), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(124, 58, 237, 0.06), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(124, 58, 237, 0.1), 0 4px 12px rgba(0,0,0,0.04);
    --gradient: linear-gradient(135deg, #7c3aed, #a855f7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#app {
    min-height: calc(100vh - 60px);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* ---- Page container ---- */
.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 28px;
}

/* ---- Status badges ---- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.status--draft {
    background: #f0eef5;
    color: #8b80a5;
}

.status--review {
    background: #fef3c7;
    color: #d97706;
}

.status--approved {
    background: #d1fae5;
    color: #059669;
}

/* ---- Empty states ---- */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    text-align: center;
}

.empty-state svg {
    width: 52px;
    height: 52px;
    color: var(--c-text-muted);
    margin-bottom: 18px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 6px;
}

.empty-state p {
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    max-width: 340px;
    line-height: 1.6;
}
