﻿.my-tabs .mud-tab {
    font-size: 1rem;
    font-weight: normal;
    text-transform: none;
    margin-right: 15px;
}


/* ====================================================
   Main Layout */

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }



.content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
    padding-top: 1.1rem;
}

.main-area {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    overflow-y: auto;
    padding: 1rem;
    max-height: calc(100vh - 200px);
}



/* ====================================================
   LogViewer */

.log-area {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    min-height: 100px;
    background-color: var(--mud-palette-surface);
    border-top: 1px solid var(--mud-palette-surface);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    pointer-events: auto !important;
    z-index: 10;
    resize: vertical;
}

.log-content {
    flex: 1;
    overflow-y: auto;
    white-space: pre-wrap;
    font-family: monospace;
    color: var(--mud-palette-text-primary);
    margin: 0;
    padding: 10px;
    line-height: 1.2;
    margin-bottom: 0;
    position: relative;
    background-color: var(--mud-palette-background-gray);
}

.log-content-c64 {
    color: #887ecb;
    background-color: #50459b;
}

.drag-handle {
    width: 100%;
    height: 10px;
    background-color: var(--mud-palette-lines-inputs);
    cursor: ns-resize;
    z-index: 10;
    position: relative;
    pointer-events: auto !important;
}

.is-working-me {
    background-color: var(--mud-palette-info-lighten);
}

.is-working-other {
    background-color: var(--mud-palette-info-darken);
}

.drawer-open {
    margin-left: 300px;
}

.drawer-closed {
    margin-left: 0px;
}
