﻿/* ===============================================
   SHARED LAYOUT STYLES
   Used by BOTH Homepage and Author Area layouts
   =============================================== */

body {
    font-family: Roboto, sans-serif;
    background: #f3f4f6;
    margin: 0;
    padding: 0;
}

/* ================= APP HEADER (Shared - Red) ================= */
.app-header {
    height: 56px;
    background: #b91c1c;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.app-title {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================= LAYOUT STRUCTURE (Shared) ================= */
.app-layout {
    display: flex;
    height: calc(100vh - 56px);
}

/* ================= MAIN CONTENT (Shared) ================= */
.main-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: #f9fafb;
}