body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
    overflow-x: hidden;
    padding-top: 72px;
}

/* Navbar */
nav {
    background-color: #ffffff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    color: #2563eb !important;
    letter-spacing: -0.3px;
}

/* Section title */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h1 {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: #111827;
}

.section-header p {
    color: #6b7280;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 10px auto 0;
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform .25s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.status-badge {
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    display: inline-block;
    margin-bottom: 8px;
}

.status-published { background-color: #16a34a; }
.status-review { background-color: #facc15; color: #1f2937; }
.status-decline { background-color: #fa153f; color: #f0f0f0; }
.status-draft { background-color: #9ca3af; }
.status-blocked { background-color: #00050e; }

footer {
    text-align: center;
    padding: 50px 0 30px;
    background: #111827;
    color: #e5e7eb;
    font-size: .95rem;
    margin-top: 80px;
}

