@import url(animation.css);

.roboto-regular {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: normal;
}
  
#sidebar {
    display: flex !important;
    flex-direction: column;
    justify-content: stretch;
    padding: 12px 4px 8px 0px;
    height: auto; /* Altura automática para expandir com o conteúdo */
    max-height: 100%; /* Limita a altura para não exceder o tamanho da página principal */
    background-color: rgb(244, 244, 244);

}

.sidebar-logo-container {
    height: auto;
    padding: 12px;
    margin-bottom: 12px;
}

.logo-sidebar {
    min-width: 80px;
    width: 90%;
}

.sidebar-divider {
    height: 1.5px;
    width: 75%;
    background-color: rgb(224, 224, 224);
}

.menu-btn {
    padding: 8px 8px 8px 0px;
    height: 100%;
    width: 100%;

}

.sidebar-menu-btn-logo {
    width: 20px;
    height: auto;
}
#main-page {
    background-color: #ffffff;
    height: auto; /* Ajusta dinamicamente com o conteúdo */
    min-height: 100%; /* Garante que o conteúdo ocupe pelo menos a altura total */
}

.container-fluid.full-screen {
    height: 100vh; /* Faz com que todo o layout ocupe a tela inteira */
}

.row.h-100 {
    height: 100%;
}