/**
 * Estilos para o frontend do plugin GETPN Integration
 */

/* Formulário de busca */
.getpn-search-form {
  margin-bottom: 30px;
}

.getpn-form {
  display: grid;
  gap: 15px;
  max-width: 600px;
  margin-bottom: 20px;
}

.getpn-form-field {
  display: grid;
  gap: 5px;
}

.getpn-form-field label {
  font-weight: 600;
}

.getpn-form-field input,
.getpn-form-field select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.getpn-button {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.getpn-button:hover {
  background-color: #005177;
}

/* Resultados da busca */
.getpn-search-results {
  margin-top: 20px;
}

.getpn-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.getpn-loading .spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-left-color: #0073aa;
  border-radius: 50%;
  animation: getpn-spin 1s linear infinite;
}

@keyframes getpn-spin {
  to {
    transform: rotate(360deg);
  }
}

.getpn-error {
  color: #d63638;
  font-weight: 600;
}

/* Tabela de resultados */
.getpn-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.getpn-table th,
.getpn-table td {
