/* Bootstrap 5.3 Clean Base Styling */
html, body {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.925rem;
    min-height: 100vh;
}

/* Subtle link formatting */
a {
    text-decoration: none;
}

/* Custom Nav Link Active Pill in Sidebar */
.sidebar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.5rem 0.85rem;
    margin-bottom: 2px;
    border-radius: 0.375rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.15s ease-in-out;
}

.sidebar-nav .nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-nav .nav-link.active {
    color: #ffffff;
    background-color: #0d6efd;
    font-weight: 600;
}

.sidebar-nav .nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Small Typography Helper */
.fs-7 { font-size: 0.8125rem !important; }
.fs-8 { font-size: 0.75rem !important; }

/* Blazor Error Boundary UI */
#blazor-error-ui {
    background: #fff3cd;
    color: #664d03;
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.75rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
}