:root {
    --bs-heading-color: #757575;
    --mud-typography-button-text-transform: none!important;
}

.loading-image {
    position: relative;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

code {
    color: #c02d76;
}

.mud-badge.mud-badge-top.right.mud-badge-overlap {
    inset: auto auto calc(100% - 24px) calc(100% - 24px)!important;
}

.mud-button {
    border-radius: 24px!important;
}

.transparent-appbar {
    background-color: var(--mud-palette-background) !important;
    border-bottom: 1px solid var(--mud-palette-appbar-background);
    box-shadow: none !important;
    color: var(--mud-palette-text-secondary) !important;
}

.page-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.page-content-fullwidth {
    width: 100%;
}

.page-content-centered {
    width: 800px;
    max-width: 800px;
}

.animatedtext {
    font-family: 'Roboto', sans-serif;
    color: #808080;
    font-size: 28px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 2s ease-in-out forwards;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.boxed-input input.mud-input-slot.mud-input-root {
    font-family: monospace;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1ch;
    border: none;
    outline: none;
    line-height: 1.6;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
