﻿/* layout.css */

.page {
    min-height: 100vh;
    background: #f7f8fa;
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.app-brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.app-footer {
    background: #fff;
}

/* Layout wrapper used in MainLayout.razor */
.app-shell {
    display: flex;
    align-items: stretch;
    min-height: calc(100vh - 56px);
}

/* Main content beside sidebar */
.main-content.app-content {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 0;
}