/* ------------- Estilizando menu ---------------- */
nav a:hover,
nav a:focus {
    color: white !important;
}

/* ------------- Centralizando conteúdo --------------- */
.flex-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box,
.conteudoCentro {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* -------------- Scroll no comboBox ------------- */
.menuScroll {
    max-height: 20vh;
    overflow-y: scroll;
}

/* -------------- Mensagem de email inválido------------- */
#msgemail,
#msgsenha,
#msgCPF,
#msgCNPJ {
    color: red;
}

#dropdownMenuLink {
    position: relative;
}

.cardRelatorio {
    min-height: 250px;
    max-height: 400px;
    overflow: auto;
}

.cardContato {
    min-height: 150px;
    max-height: 180px;
    overflow: auto;
}

.modal-body {
    max-height: 400px;
    overflow-y: auto;
}

#esconder {
    display: none;
}

.txtMaoir {
    height: 300px;
}

.minimizado {
    height: 30;
    overflow: hidden;
    transition: height 0.3s ease;
  }

  /* Estilizando o select para ter o mesmo tamanho do form-control */
.prodCombo {
    height: calc(2.875rem + 4px); /* Adapte este valor para corresponder ao tamanho desejado */
    padding: 0.1875rem 0.75rem; /* Adapte este valor para corresponder ao tamanho desejado */
    font-size: 1.25rem; /* Adapte este valor para corresponder ao tamanho desejado */
}

.hidden {
    display: none;
}

  