html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

/* Logo padrão */
.header-logo {
    background-image: url(../images/Logo.png);
    width: 150px;
    height: 92px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: width 0.3s ease, height 0.3s ease; /* Transições suaves */
}

/* Estilo para a sidebar */
.sidebar {
    min-width: 270px; /* Largura padrão da sidebar */
    width: 270px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.16);
    padding-top: 20px;
    transition: width 0.3s ease; /* Transição suave */
}

.header {
    z-index: 1030;
    min-height: 6rem;
    word-wrap: inherit;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}
