﻿#error-ui {
    background: #880000;
    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;
}

#error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.deleted {
    text-decoration: line-through;
}

.appbar-band {
    background-image: url(../assets/appbarcorner.svg);
    background-repeat: no-repeat;
    background-position: top right;
    overflow: hidden;
}

.docs-nav-fader {
    display: block;
    width: 232px;
    height: 28px;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0), var(--mud-palette-drawer-background));
    z-index: 100;
}

.blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(3px);
    opacity: 0.3;
}

.forceFocus label.mud-input-label {
    color: var(--mud-palette-primary) !important;
}

.forceFocus div.mud-input-outlined-border {
    border-width: 2px !important;
    border-color: var(--mud-palette-primary) !important;
}


/* Loading wave */

.blob {

    border-radius: 50%;
    margin: 10px;
    height: 200px;
    width: 200px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 60px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Small Scroll bar */

.smallScrollbar::-webkit-scrollbar {
    width: 3px;
    height: 1px;
    z-index: 1;
}

.smallScrollbar::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 1px;
}

.smallScrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.mediumScrollbar::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    z-index: 1;
}

.mediumScrollbar::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 1px;
}

.mediumScrollbar::-webkit-scrollbar-track {
    background: transparent;
}

@media (max-width: 600px) {
    .fullWidth-Xs {
        width: 100% !important;
    }
}

svg.apexcharts-svg { background: transparent !important; }

.intro-body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.intro-container {
    display: flex;
    align-items: center;
    flex-direction: column; /* Default to column for smaller screens */
    text-align: center; /* Center text by default */
}
.intro-logo {
    height: 90px;
    margin-bottom: 20px; /* Add bottom margin for space between logo and text */
}
.intro-h1 {
    margin: auto;
}
.intro-main-title {
    font-size: 55px;
}
.intro-subtitle {
    font-weight: 400;
}
@media (min-width: 601px) {
    .intro-container {
        flex-direction: row; /* Change to row for larger screens */
        text-align: left; /* Align text to left for larger screens */
    }
    .intro-logo {
        margin-bottom: 0;
        margin-right: 20px; /* Add right margin for space between logo and text */
    }
}
@media (max-width: 600px) {
    .intro-logo {
        height: 50px;
    }
    .intro-main-title {
        font-size: 35px;
    }
    .intro-subtitle {
        font-size: 20px;
    }
}