:root {
    --spacing-1: 4px;
    --spacing-2: 8px;
    --spacing-3: 12px;
    --spacing-4: 16px;
    --spacing-5: 20px;
    --spacing-6: 24px;
    --spacing-7: 28px;
    --spacing-8: 32px;
    --spacing-9: 36px;
    --spacing-10: 40px;
    /* Überschrieben */
}

html, body, main, .root, .layout, .page {
    height: 100%;
    overflow: hidden;
    user-select: none;
}

.page {
    padding: var(--spacing-6) var(--spacing-8);
    overflow-y: hidden;
    height: 100%;
}

.mud-list-item-icon {
    min-width: 35px;
}

.message-box-button {
    min-width: 120px;
}

.no-entries-text {
    padding: var(--spacing-2);
    color: lightgray;
    font-style: italic;
    white-space: nowrap;
}


[data-tooltip]:hover:after {
    opacity: 1;
    transition: all 0.5s ease 0.5s;
    visibility: visible;
}

[data-tooltip]:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -1.6em;
    right: 5px;
    color: #222;
    background-color: white;
    white-space: nowrap;
    box-shadow: 1px 1px 3px #2222227d;
    opacity: 0;
    visibility: hidden;

    padding: 4px 8px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4em;
    border-radius: var(--mud-default-borderradius);
    z-index: var(--mud-zindex-tooltip);

    color: var(--mud-palette-dark-text);
    background-color: var(--mud-palette-grey-darker)

}

[data-tooltip] {
    position: relative;
}