html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.sidebar {
    width: 260px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #1f2937;
    color: #fff;
    transition: all .3s ease;
    min-height: 100vh;
}

.sidebar.collapsed {
    width: 75px;
}

.sidebar .nav-link {
    color: #cbd5e1;
    font-size: 14px;
    border-radius: 6px;
    padding: 8px 12px;
    transition: all .2s ease;
}

.sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.sidebar .nav-link.active {
    background-color: #0d6efd;
    color: #fff !important;
}

.sidebar .collapse .nav-link {
    font-size: 0.9rem;
}

.sidebar .menu-text {
    margin-left: 10px;
}

.sidebar.collapsed .menu-text {
    display: none;
}

.content {
    margin-left: 260px;
    transition: all .3s;
}

.content.expanded {
    margin-left: 75px;
}

.topbar {
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 0 20px;
}

@media(max-width: 991px) {
    .sidebar {
        left: -260px;
    }

    .sidebar.active {
        left: 0;
    }

    .content {
        margin-left: 0;
    }
}

.transition {
    transition: transform .3s ease;
}

.nav-link[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.alinhar_final {
    display: flex;
    justify-content: end;
}

.is-invalid-alert {
    padding: 0.5vw;
    text-align: center;
    margin-top: 0.3vw;
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
    border-radius: 0.3vw;
}

/* Container colapsável animado */
.filtros-container {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

/* Quando ativo (aberto) */
.filtros-container.open {
    max-height: 600px;
    /* altura máxima visível */
    opacity: 1;
}

/* Inicio Autocomplete */
table tbody tr td {
    color: red;
}

.ts-wrapper {
    width: 100%;
}

.ts-control {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    min-height: 38px;
    padding: 0.375rem 0.75rem;
}

.ts-control input {
    margin: 0;
}

.ts-dropdown {
    border-radius: 0.375rem;
}

.div_principal_dinamico {
    padding: 1vw;
}

.relogioNavBar {
    padding-right: 0.6vw;
}

.tabela_listagem {
    padding-top: 1vw;
}

/* Inicio Autocomplete */