/* _content/jasmine/Components/Layout/MainLayout.razor.rz.scp.css */
/* Mobile-first layout */
.app-container[b-uhvfw30hp9] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f5f5f5;
}

.app-header[b-uhvfw30hp9] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.app-header h1[b-uhvfw30hp9] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.app-content[b-uhvfw30hp9] {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 80px; /* Space for bottom nav on mobile */
}

/* Desktop layout */
@media (min-width: 768px) {
    .app-container[b-uhvfw30hp9] {
        flex-direction: row;
    }

    .app-content[b-uhvfw30hp9] {
        padding-bottom: 0;
        padding-left: 0;
    }

    .app-header[b-uhvfw30hp9] {
        display: none; /* Use nav header on desktop instead */
    }
}

/* Error UI */
#blazor-error-ui[b-uhvfw30hp9] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-uhvfw30hp9] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/jasmine/Components/Layout/NavMenu.razor.rz.scp.css */
/* Mobile: Bottom tab bar */
.nav-menu[b-sh9ke6ezrz] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-item[b-sh9ke6ezrz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #666;
    transition: all 0.2s;
    border-radius: 8px;
    min-width: 80px;
}

.nav-icon[b-sh9ke6ezrz] {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.nav-label[b-sh9ke6ezrz] {
    font-size: 0.75rem;
    font-weight: 500;
}

.nav-item:hover[b-sh9ke6ezrz] {
    background: #f0f0f0;
    color: #667eea;
}

.nav-item.active[b-sh9ke6ezrz] {
    color: #667eea;
    background: #f0f0ff;
}

/* Desktop: Left sidebar */
@media (min-width: 768px) {
    .nav-menu[b-sh9ke6ezrz] {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 240px;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem 1rem;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    }

    .nav-item[b-sh9ke6ezrz] {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        margin-bottom: 0.5rem;
        width: 100%;
        color: rgba(255,255,255,0.8);
    }

    .nav-icon[b-sh9ke6ezrz] {
        font-size: 1.25rem;
        margin-bottom: 0;
        margin-right: 1rem;
    }

    .nav-label[b-sh9ke6ezrz] {
        font-size: 1rem;
    }

    .nav-item:hover[b-sh9ke6ezrz] {
        background: rgba(255,255,255,0.1);
        color: white;
    }

    .nav-item.active[b-sh9ke6ezrz] {
        background: rgba(255,255,255,0.2);
        color: white;
        border-left: 4px solid white;
    }
}
