@import url('https://fonts.googleapis.com/css2?family=Montserrat');

html,
body {
  font-family: 'Montserrat', sans-serif;
  background-color: white;
  min-height: 100vh;
}

div {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444 !important;
  line-height: 34px !important;
}

.imgCarregando {
  height: 10px;
  width: 30px;
  margin-top: -30px !important;
  display: none;
  background-image:url('./assets/images/ajax-loader-2.gif');
  background-repeat:no-repeat;
  background-position:center center;
}

.obrigatorio {
  color: red;
}

.logo-name .logo {
  height: 65px;
}

/* Overlay para cobrir toda a tela, inclusive sobre o modal */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5); /* escurecido, ajuste se necessário */
  z-index: 2000; /* maior que o modal */
  display: none; /* mostrar com .show() no JS */
}

/* Modal responsivo */
.modal-dialog {
  max-width: 95vw;
  width: auto;
  margin: 20px auto;
}

.modal-content {
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .modal-dialog {
    max-width: 100vw;
    margin: 5px;
  }
  .modal-content {
    max-height: 95vh;
    border-radius: 4px;
  }
}
