/* Tema Claro (Padrão) */
:root {
    --bs-body-bg: #f8f9fa;
    --bs-body-color: #212529;
    /* Outras variáveis */
}

/* Tema Escuro */
.dark-theme {
    --bs-body-bg: #212529;
    --bs-body-color: #f8f9fa;
    /* Outras variáveis */
}
/* Tema Escuro */
.dark-theme .navbar {
    background-color: #343a40; /* Cor de fundo para o tema escuro */
}
.dark-theme .navbar-brand, .dark-theme .nav-link {
    color: #ffffff; /* Cor do texto para o tema escuro */
}
/* Ajustes para dropdown menu no tema escuro */
.dark-theme .dropdown-menu {
    background-color: #343a40;
}
.dark-theme .dropdown-item {
    color: #ffffff;
}
.dark-theme .dropdown-item:hover {
    background-color: #495057; /* Um pouco mais claro que o fundo do menu dropdown */
}

* {
    margin: 0;
    padding: 0;
}

.h-100 {
    height: 100% !important;
}

.offcanvas {
    min-height: 35vh;
}
button#themeToggleButton:hover {
    color: black;
    font-weight: bold;
}
div.comunicacao, div.fundo img {
    display: none;
}

body {
    background: linear-gradient(180deg, #000046 0%, #1CB5E0 100%) no-repeat;
    width: 100%;
    min-height: 100vh;

}

header {
    width: 100%;
    height: 10vh;
}

svg.logo_svg {
    width: 50px;
    height: 50px;
}

main {
    width: 80%;
    height: 85vh;
    margin: 0 auto;
    color: white;
}
div.tabela{
    width: 100%;
    height: 80%;
    border: 2px solid black;
    border-radius: 10px;
    background-color: white;
}
.minha-classe-customizada {
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: wrap;
}

footer {
    width: 100%;
    min-height: 5vh;
    background-color: white;
    z-index: 1;
    position: relative;
    margin-top: auto;
}

@media (min-width: 768px) {
    header {
        width: 100%;
        max-height: 10vh;
    }

    nav {
        height: 100%;
    }

    .offcanvas {
        min-height: 5vh;
    }

    li.cc {
        display: none;
    }

    div.comunicacao {
        display: block;
    }
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}