/* pagina cadastrar */
#mapa {
    height: 400px;
}

.nav-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.tab-content {
    padding: 1rem;
}

.form-check {
    margin-bottom: 0.5rem;
}

.custom-input {
    min-height: 150px;
    min-width: 128px;
    width: 100%;
    height: 120px;
    resize: vertical;
    padding: 10px;
    box-sizing: border-box;
}

.dark-mode .custom-input {
    color: white !important;
}

.form-check {
    position: relative;
    display: inline-block;
}

.form-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.form-check .form-check-label {
    padding: 0.5rem;
    background-color: #F39C12;
    border-radius: 8px;
    color: white;
    transition: all 0.3s;
}

.form-check input:checked~.form-check-label {
    background-color: #28a745;
}

.form-check input:not(:checked)~.form-check-label {
    background-color: #F39C12;
}

/* Dark Mode Formulário Branco */
.dark-mode .form-control {
    color: white !important;
    border-color: white !important;
}

.dark-mode .select2-container--default .select2-selection--single {
    background-color: #343a40 !important;
    color: white !important;
}

.dark-mode .select2-selection__rendered {
    color: white !important;
}

.dark-mode .select2-selection__placeholder {
    color: white !important;
}

.select2-selection__clear{
    background-color: #68b1ff94;
    border-radius: 50%; 
    width: 1.6em; 
    height: 1.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-selection__clear:hover {
    background-color: #68b1ff3d; /* Change background color on hover */
}

.select2-container .select2-selection--single {
    height: auto;
    min-height: 30px !important;
    border-radius: 18px;
    border: 1px solid #ced4da;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(1.5em + .75rem);
    top: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 24px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: -5px;
}

.select2-dropdown {
    border-radius: 18px;
}

.dark-mode .select2-container--default .select2-selection--multiple{
    background-color: #343a40 !important;
    
}
.dark-mode .select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: #5897fb;
}

.select2-container .select2-selection--multiple {
    height: auto;
    min-height: 30px !important;
    border-radius: 18px;
    border: 1px solid #ced4da;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
color:#000;
border-radius: 10px;
background-color:#c4defa;
border-color: #4e86e0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color:#000;
}

.select2-search__field{
    color: #000;
}
.select2-container--default.select2-container--focus .select2-selection--multiple{
    border-color: #80bdff;
}

.form-control {
    border-radius: 18px;
    min-height: 24px;
}

@media (max-width: 1080px) {
    .btn.btn-success {
        bottom: 20px;
        right: 20px;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: none;
}

.overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #337ab7;
}

.preloader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
}

.flash-message {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 1050;
    text-align: center;
    transition: opacity 0.3s ease-in-out;
}

.page_title {
    background-color: lightgray;
    padding: 5px;
    border-radius: 0.75rem;
}

.modal-title {
    color: #333;
    font-weight: bold;
  }
  
  .dark-mode .modal-title {
    color: #ffffff;
  }

  .modal-body {
    color: #333;
    padding:0.25rem;
  }
  .dark-mode .modal-body {
    color: #ffffff;
  }
  
  .btn-secondary, .btn-primary {
    font-size: 16px;
  }

  button.close {
    color: #000;
    opacity: 0.6;
  }
  
  button.close:hover {
    opacity: 1;
  }

/* pagina consultar */

.scroll-x {
    max-width: 300px;
    overflow-x: auto;
}


.link-check {
background-color:#007bffe1;
padding:5px;
border-radius: 0.75rem;
color:white;

}
.link-check:hover {

    background-color: #007bffbb;
    color: white 
  
  }

 .modal-body .row:nth-child(odd) {
    background-color:  #e9e9e9;
}

.modal-body .row:nth-child(even) {
    background-color: #ffffff;
}

.modal-body .row {
    padding: 5px;
    margin: 1px; 
    border-radius: 5px;
}

.dark-mode .modal-body .row:nth-child(odd) {
    background-color: #313131;
}

.dark-mode .modal-body .row:nth-child(even) {
    background-color: inherit;
}

.dark-mode .modal-body .row {
    padding: 5px;
    margin: 1px; 
    border-radius: 5px;
} 
