
.message {
    display: none; /* Inicialmente escondido */
    color: #007bff; /* Cor da mensagem */
    font-size: 0.9em; /* Tamanho da fonte */
    margin-top: 5px; /* Espaçamento acima da mensagem */
}

.onlyprint{
        display: none;
}
    
@media print
{    
    body {
        font-size: 9pt !important; /* Ajuste o tamanho da fonte para o corpo conforme necessário */
        background-color: #fff !important;
    }
    caption{
        font-size: 8pt !important; /* Ajuste o tamanho da fonte para tabelas conforme necessário */
    }
    table{
        page-break-inside: avoid;
        font-size: 7pt !important; /* Ajuste o tamanho da fonte para tabelas conforme necessário */
    }
    .quebravel {
        page-break-inside: auto !important;
        font-size: 7pt !important; /* Ajuste o tamanho da fonte para tabelas conforme necessário */
    }
    .noprint
    {
        display: none !important;
    }
    .onlyprint
    {
    display: block;
        display: block;
        width: 100%;
    }
} 
#panel-button img{
  display: none !important;
}


html, body {
    height: 100%;
    margin: 0;
}
.container-full-height {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.scrollable-div {
    flex: 1;
    overflow-y: auto;
}


@font-face {
  font-family: 'MontserratRegular';
  src: url('fonts/Montserrat-Regular.otf') format('truetype');
}
@font-face {
  font-family: 'MontserratBold';
  src: url('fonts/Montserrat-Bold.otf') format('truetype');
}

@font-face {
  font-family: 'ShareTechMonoRegular';
  src: url('fonts/ShareTechMono-Regular.ttf') format('truetype');
}

:root {
--bs-font-nf: "ShareTechMonoRegular", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

th a{
	text-decoration: 	none;
	color: 	#000;
}
ul.pagination li{
	@extends .page-link;
}

span.bi{
	font-size: 1.1rem;
}
a.btn{
  padding: 0.1rem 0.5rem !important;
}
span.bi.btn-header{
  
  font-size: 0.8rem !important  ;
}
a.btn.btn-header{  
  padding: 0rem 0.3rem !important;
}



.info-icon {
      cursor: pointer;
    }

.info-popup {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 1;
}

.info-popup.show {
  display: block;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
}

.loading-overlay.show {
  visibility: visible;
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@media print {
  div .unbreak{
    break-inside: avoid;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.table-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.table-link:hover {
  color: #007bff; /* ou a cor desejada */
  text-decoration: underline;
  cursor: pointer;
}

.text-sm{
  font-size: 0.7rem
}

.scrollbar-row {
overflow-x: auto;
white-space: nowrap;
scrollbar-width: thin; /* Firefox */
}

.scrollbar-row::-webkit-scrollbar { /* WebKit */
width: 10px;
}

.scrollbar-row::-webkit-scrollbar-track {
background: #f1f1f1;
}

.scrollbar-row::-webkit-scrollbar-thumb {
background-color: #888;
border-radius: 5px;
}

.scrollbar-row::-webkit-scrollbar-thumb:hover {
background: #555;
}

.flash-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;    
    pointer-events: none; /* Permite interação com outros elementos na página */
}

.flash-message.show {
    display: block;
}

label .bi-calculator{
  color: #ff6219 !important;
}