.legenda-situacao-nota {
    display: flex; 
    border: 2px solid #fff; 
    padding: 10px;
    background-color: white; 
    border-radius: 5px; 
    margin-bottom: 20px;
    margin-left: 15px; 
    margin-right: 22px;
    
}

.legenda-situacao-nota > p {
    margin: 0; 
    margin-right: 20px; 
    line-height: 20px; 
}

.legenda-itens {
    display: flex; 
    gap: 20px; 
}

.legenda-item {
    display: flex; 
    align-items: center; 
}

.bloco-azul,
.bloco-verde {
    border-radius: 3px;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.bloco-azul {
    background-color: #005d9d;
}

.bloco-verde {
    background-color: #28a745;
}

.icon-color {
    color: #014a7d; 
    font-size: 16px; 
    margin-right: 5px;
    text-decoration: none;
}

.icon-color:hover {
    color: #0056b3;
    cursor: pointer; 
}

.pagination .page-item.active .page-link {
    background-color: #031D40;
    color: white;
    border-color: #031D40;
    font-weight: bold;
}

#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .spinner-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 6px solid transparent;
    border-radius: 50%;
  }
  
  .spinner-ring:nth-child(1) {
    border-top: 6px solid #3ECCC7;
    animation: spin1 1.5s linear infinite;
  }
  
  .spinner-ring:nth-child(2) {
    border-bottom: 6px solid #005D9D;
    animation: spin2 1.5s linear infinite;
  }
  
  @keyframes spin1 {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes spin2 {
    0% {
      transform: rotate(360deg);
    }
  
    100% {
      transform: rotate(0deg);
    }
  }



@media (max-width: 576px) {
    .bloco-azul, .bloco-verde {
        width: 14px; 
        height: 14px;
    }
}


@media (max-width: 400px) {
    .bloco-azul, .bloco-verde {
        width: 20px;
        height: 16px;
        margin-right: 5px; 
    }

    .legenda-item {
        font-size: 14px;
    }

    .legenda-itens {
        margin-top: 14px;
    }

    .legenda-situacao-nota {
        display: block;
    }
}


