.campo-observacao {
    font-size: 14px; /* Tamanho da fonte */
    color: #d9534f; /* Cor do texto (vermelho suave) */
    font-weight: bold; /* Texto em negrito */
    text-align: center; /* Centralizado na célula */
}


.estilo-titulo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 18px;
}


.titulo-pedido {
    font-family: 'Montserrat', sans-serif; 
    font-size: 35px; 
    font-weight: bold; 
    color: #333; 
    margin-bottom: 20px; 
}




#campo-operacao {
    white-space: normal; 
    overflow: visible; 
    word-wrap: break-word; 
    font-size: 14px; 
    color: #0056b3;
    font-weight: bold; 
    text-align: left; 
}


.estrutura-tabela {
    margin-left: 15px;
    margin-right: 15px;
}



#custom-table {
    width: 100%;
    border-collapse: collapse;
}

#custom-table th {
    text-align: center;
    background-color: #014a7d;
    color: white;
    padding: 12px;
    font-size: 16px;
}

#custom-table td {
    padding: 12px;
    font-size: 16px;
    vertical-align: middle;
    background-color: #ffffff;
}

#custom-table td i {
    font-size: 20px;
}

#custom-table .text-center {
    text-align: center;
}



#tabela-pedido-venda {
    border-collapse: separate;
    border-spacing: 0 5px; 
    padding-top: 85px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 15px;
}

#tabela-pedido-venda th,
#tabela-pedido-venda td {
    padding: 10px 20px; 
    vertical-align: middle;
}

#tabela-pedido-venda th {
    white-space: nowrap;
    width: 200px;
    background-color: #F8FAFC;
    font-weight: 500;
    color: black;
    font-weight: 600;

}

#tabela-pedido-venda td {
    background-color: #ffffff;
    font-weight: 300;
}

.input-pedido-cliente {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.input-pedido-cliente:focus {
    border-color: #004080; 
    outline: none;
    box-shadow: 0 0 3px rgba(0, 64, 128, 0.25); 
}

.input-pedido-cliente::placeholder {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.4);
}


.select-condicao-pagamento {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    transition: border-color 0.3s;
    appearance: none; 
}

.select-condicao-pagamento:focus {
    border-color: #004080;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 64, 128, 0.25);
}


.produtos-pedido-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #004080;
    margin-bottom: 20px;
}


.style-button-pedido-api {
    margin-top: 30px;
}

.style-button-pedido-api #btn-enviar-pedido-api {
    background-color: #004080;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.style-button-pedido-api #btn-enviar-pedido-api:hover {
    background-color: #003366;
}


#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);
    }
  }







