:root {
    /* Default Fallback */
    --primary-color: #594AE2;
    --menu-font-family: 'Roboto', sans-serif;
}

/* Global Font Scaling - Reduced by approx 15% */
html {
    font-size: 0.85rem !important;
    /* Scale overall base font size down */
    --mud-spacing: 2px !important;
    /* Reduced base spacing unit from 4px to 2px */
}

/* Specific MudBlazor Overrides for a cleaner compact feel */
.mud-input,
.mud-input-label,
.mud-button-root {
    font-weight: 400;
    /* Prevent text from appearing too chunky at small sizes */
}

/* Fixed Action Footer - Pinned to bottom, above page footer */
.fixed-action-footer {
    position: fixed;
    bottom: 3.5rem; /* Sit above the 3.5rem footer */
    left: var(--mud-drawer-width-left, 0px);
    right: 0;
    z-index: 1000;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}