/* Start custom CSS */.detalhe-emenda-wrap{
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
}

.detalhe-emenda-breadcrumbs{
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

.detalhe-emenda-breadcrumbs a{
  color: #2563eb;
  text-decoration: none;
}

.detalhe-emenda-breadcrumbs a:hover{
  text-decoration: underline;
}

.detalhe-emenda-titulo{
  margin-bottom: 20px;
}

.detalhe-emenda-titulo h1{
  margin: 0 0 8px;
  font-size: 38px;
  line-height: 1.2;
  color: #111827;
}

.detalhe-emenda-titulo p{
  margin: 0;
  color: #6b7280;
  font-size: 16px;
}

.detalhe-emenda-card{
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  padding: 22px;
  margin-top: 20px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.detalhe-emenda-card h2{
  margin: 0 0 18px;
  font-size: 24px;
  color: #143b7a;
}

.detalhe-emenda-card p{
  margin: 0 0 10px;
  line-height: 1.6;
}

.detalhe-emenda-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.detalhe-menor{
  grid-template-columns: repeat(3, 1fr);
}

.detalhe-emenda-table-wrap{
  overflow-x: auto;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
}

.detalhe-emenda-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: #fff;
}

.detalhe-emenda-table th{
  background: #f3f4f6;
  color: #111827;
  text-align: left;
  padding: 12px;
  font-size: 14px;
  border-bottom: 1px solid #dbe3ee;
}

.detalhe-emenda-table td{
  padding: 12px;
  font-size: 14px;
  border-bottom: 1px solid #eef2f7;
  vertical-align: top;
}

.detalhe-emenda-table tr:nth-child(even) td{
  background: #fafcff;
}

.detalhe-emenda-lista{
  margin: 0;
  padding-left: 20px;
}

.detalhe-emenda-lista li{
  margin-bottom: 8px;
}

.detalhe-emenda-lista a{
  color: #2563eb;
  text-decoration: none;
}

.detalhe-emenda-lista a:hover{
  text-decoration: underline;
}

.detalhe-emenda-acoes-finais{
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.btn-imprimir{
  background: #0f5ea8;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: .2s ease;
}

.btn-imprimir:hover{
  background: #0b4d89;
}

.btn-detalhar{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: .2s ease;
}

.btn-detalhar:hover{
  background: #bfdbfe;
  color: #1e3a8a;
}

@media (max-width: 900px){
  .detalhe-emenda-grid,
  .detalhe-menor{
    grid-template-columns: 1fr;
  }

  .detalhe-emenda-titulo h1{
    font-size: 28px;
  }

  .detalhe-emenda-wrap{
    padding: 16px;
  }

  .detalhe-emenda-acoes-finais{
    justify-content: stretch;
  }

  .btn-imprimir{
    width: 100%;
  }
 }/* End custom CSS */