/* Estilo para formulário de envio */
#formulario {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid #ddd;
    background-color: #fafafa;
    border-radius: 6px;
  }
  
  #formulario form input[type="text"],
  #formulario form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  #formulario form button {
    background-color: #2271b1;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  #formulario form button:hover {
    background-color: #1a5e94;
  }
  
  /* Estilo para campo de busca AJAX */
  #busca-processo-form {
    text-align: center;
    display: flex;
    gap: 25px;
    width: 80%;
    margin: 40px auto;
  }
  #busca-processo-form select {
    padding: 12px 20px;
    border-radius: 25px;
    border-color: #bbbbbb;
    color: #bbbbbb;
  }
  #busca-processo-form input[type="text"] {
    padding: 11px;
    width: 70%;
    max-width: 350px;
    border: 1px solid #bbb;
    border-radius: 25px;
  }
  #busca-processo-form input[type="text"]:focus{
    outline: none;
  }
  #busca-processo-form button {
    padding: 12px 40px;
    background: linear-gradient(45deg, #8db953, #aec48f, #8db953, #aec48f);
    color: #192937;
    border: none;
    border-radius: 25px;
    margin-left: 8px;
    cursor: pointer;
  }
  #busca-processo-form button:hover {
    background-color: #1a5e94;
  }
  
  /* Resultado da busca */
  #resultado-processos ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #resultado-processos ul li {
    margin: 0.5rem 0;
    padding: 0.6rem 1rem;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  #resultado-processos ul li a {
    text-decoration: none;
    color: #2271b1;
  }
  #resultado-processos ul li a:hover {
    text-decoration: underline;
  }
  
  .processo-card {
    border: 1px solid #ddd;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    background-color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  }
  
  .processo-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .75rem;
  }
  .processo-card h3 {
    margin: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
  }
  .status {
    padding: .3rem .6rem;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: bold;
    color: #fff;
  }
  .badge-em-andamento { background-color: #c59b66; padding: 5px;
    border-radius: 5px; }
  .badge-encerrada { background-color: #8a8a8a; padding: 5px;
    border-radius: 5px; }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px 16px;
    margin-bottom: 1rem;
  }
  .card-grid div {
    font-size: 1.1rem;
    margin: 6px 0;
  }
  
  .card-footer {
    text-align: right;
  }
  .botao-detalhes {
    background-color: #182938;
    color: white;
    padding: 11px 22px;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .botao-detalhes:hover {
    background-color: #0f172a;
    color: #FFF;
  }
  
  .processo-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
    font-family: sans-serif;
  }
  
  .processo-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .processo-header .cnpj {
    font-size: 1rem;
    color: #555;
  }
  
  .dados-processo {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px #0001;
    margin-bottom: 2rem;
  }
  
  .dados-processo h2 {
    margin-bottom: 1rem;
    color: #1f334a;
  }
  
  .grid-dados {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
  }
  
  .campo {
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 0 4px #0001;
  }
  
  .formulario-processo {
    background: #f1f1f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
  }

  .formulario-processo label{
    width: 100%;
  }

  .formulario-processo select{
    width: 100%;
    padding: 11px;
  }
  
  .formulario-processo h2 {
    margin-bottom: 1rem;
  }
  
  .formulario-processo form p {
    margin-bottom: 1rem;
  }
  
  .formulario-processo input,
  .formulario-processo textarea {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  .formulario-processo button {
    background: #1f334a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .form-recebidos ul {
    list-style: none;
    padding-left: 0;
  }
  
  .form-recebidos li {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 6px;
    border-radius: 6px;
  }
  