html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.linha-selecionada {
    background-color: darkgrey !important; 
}

.highlight {
    background-color: #d1e7dd !important;
    transition: background-color 0.5s ease;
}

.disabled-card {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,.25);
}

.linha-destaque {
    background-color: #cad9ea; 
}


.autocomplete-list {
    position: absolute;
    background-color: white;
    z-index: 9999;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
}

.resultado-item {
    padding: 8px;
    cursor: pointer;
}

.resultado-item:hover {
    background-color: #f0f0f0;
}

/*estilo na modal _infomarSobraPartial*/
.modal-custom-size {
    max-width: 90vw; /* ou outro valor como 70vw */
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

.modal-dialog {
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.autocomplete-list {
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    position: absolute;
    z-index: 1000;
    background: white;
    border: 1px solid #ced4da;
    border-top: none;
}

