/* Show it is fixed to the top */
body {
  padding-top: 57px;
  padding-bottom: 57px;
}

/* Fixa o footer no final da pÃ¡gina */
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-bottom: 0rem; /* ajuste o valor de acordo com a sua necessidade */
}

.dropdown-menu {
  display: none; /* Esconde o sub-menu por padrão */
}

.nav-item:hover .dropdown-menu {
  display: block; /* Mostra o sub-menu ao passar o mouse */
}

.container{
  max-width: 100%!important;
}

.bg-blue {
  background-color: #3c5d95 !important;
}

/* ---- Formulário de atendimento multi-etapas ---- */
.step-indicator {
  transition: all 0.2s ease-in-out;
  border: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

.step-indicator.active {
  border-color: #0d6efd;
  background: linear-gradient(135deg, rgba(13,110,253,0.1), rgba(13,110,253,0.25));
  box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.15);
}

.step-indicator.active .fw-bold,
.step-indicator.active small {
  color: #0d6efd;
}

.step-pane {
  animation: fadeIn 120ms ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lista-disponiveis,
.lista-selecionados {
  min-height: 260px;
  max-height: 360px;
  overflow-y: auto;
}

.procedimento-item,
.procedimento-disponivel {
  cursor: grab;
}

.procedimento-item:active,
.procedimento-disponivel:active {
  cursor: grabbing;
}

.procedimento-item .cid-input.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
}

#resultado_busca {
  z-index: 1050;
  max-height: 280px;
  overflow-y: auto;
}

.card[data-lado] .card-body {
  background-color: #fdfdff;
}

.card[data-lado] .list-group-item {
  border-radius: 0.35rem;
}

.cid-input {
  width: 80px;
  text-transform: uppercase;
}