/*
 * Stable global rules for the build/version stamp.
 * BuildStamp.razor also contains component-local presentation rules, but App.razor
 * references this public asset on every request. Keeping the file present avoids a
 * noisy 404 during application boot and provides safe fallback styling before the
 * interactive component has finished initializing.
 */
.imonitor-build-stamp {
    box-sizing: border-box;
}

.imonitor-build-stamp[hidden] {
    display: none !important;
}

@media (max-width: 767.98px) {
    .imonitor-build-stamp {
        max-width: min(100%, 22rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
