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

#blazor-error-ui {
    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 {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.flare-log-link {
    position: relative;
    text-decoration: none; /* Ensures no standard text underline */
    color: inherit;
    display: inline-block; /* Ensures the pseudo-element aligns correctly */
}

    .flare-log-link::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 1px; /* Changed from 2px to 1px for a thinner line */
        bottom: -1px; /* Adjust slightly if the line cuts off or floats */
        left: 0;
        background-color: currentColor;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
        pointer-events: none; /* Prevents the pseudo-element from interfering with clicks */
    }

    .flare-log-link:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

.flare-log-link.ml-1 {
    margin-left: 1rem;
}     

.main-layout-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-layout-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.main-layout-content > .mud-container {
    flex: 1 1 auto;
}

.main-layout-footer {
    margin-top: auto;
    padding: 0 1rem 1.25rem;
}

.footer-divider {
    width: 50vw;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.footer-shell {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    text-align: center;
}

.footer-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-links a,
.footer-links button {
    flex-shrink: 0;
}