/* /Components/Layout/MainLayout.razor.rz.scp.css */
html[b-3xhyi4bmpe], body[b-3xhyi4bmpe] {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    overflow: hidden;
    background-color: #1e1e1e;
    color: #cccccc;
}

.app-wrapper[b-3xhyi4bmpe] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

.top-bar[b-3xhyi4bmpe] {
    height: 32px;
    background-color: #3c3c3c;
    display: flex;
    align-items: center;
    padding: 0 6px;
    font-size: 12px;
    user-select: none;
    flex-shrink: 0;
}

.main-body[b-3xhyi4bmpe] {
    display: flex;
    flex-grow: 1;
    overflow: hidden; /* Critical for content scroll */
}

.content-area[b-3xhyi4bmpe] {
    flex-grow: 1;
    overflow: hidden; /* Let child manage scroll */
    background-color: #1e1e1e;
    position: relative;
}

.status-bar[b-3xhyi4bmpe] {
    height: 22px;
    background-color: #007acc;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 12px;
    flex-shrink: 0;
}

.title-bar-text[b-3xhyi4bmpe] {
    margin-left: auto;
    margin-right: auto;
    color: #999;
    font-size: 12px;
}
