/* Upstream Application Styles */

html, body {
    font-family: 'Roboto', sans-serif;
}

/* Ensure MudBlazor drawer doesn't overlap content */
.mud-main-content {
    padding-top: 64px;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Loading indicator */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Screen header styling */
.screen-header {
    margin-bottom: 1rem;
}

/* Data grid adjustments */
.mud-table-container {
    max-height: calc(100vh - 300px);
}
