:root {
    --mud-palette-divider: initial; /* Deklaration für den IDE-Inspektor */
}

.seri-item-action
{
    cursor: pointer;
}

.seri-item-action:hover
{
    background-color: #2e2e35;
}

.seri-item
{
    height: 100%;
}

@font-face {
    font-family: Bauhaus93;
    src: url(Bauhaus93Regular.ttf);
}

.company-font {
    font-family: Bauhaus93, sans-serif !important;
}

.pulse-container {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: start;
}

.pulse {
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Flex-Item bricht unterhalb des sm-Breakpoints in eine eigene, volle Zeile um.
   Voraussetzung: der Flex-Container erlaubt Umbruch (MudBlazor-Klasse "flex-wrap"). */
@media (max-width: 599.98px) {
    .flex-break-mobile {
        flex-basis: 100%;
    }
}