/* Contenitore principale della console SPARQL */
.pd-sparql-console {
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
  border: 1px solid #ccc;
  padding: 20px;
  background-color: #fcfcfc;
  border-radius: 6px;
  max-width: 100%;
  overflow-x: auto;
}

/* Etichette (labels) */
.pd-sparql-label {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
  color: #333;
}

/* Dropdown di selezione query ed export format */
.pd-sparql-select,
.pd-sparql-format {
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #aaa;
  background-color: #fff;
  color: #222;
}

/* Textarea per l'inserimento della query SPARQL */
.pd-sparql-textarea {
  width: 100%;
  max-width: 100%;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #aaa;
  padding: 10px;
  border-radius: 4px;
  background-color: #fdfdfd;
  resize: vertical;
}

/* Pulsante per eseguire la query */
.pd-sparql-submit {
  margin-top: 1rem;
  padding: 8px 16px;
  font-size: 14px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.pd-sparql-submit:hover {
  background-color: #0052a3;
}

/* Pulsante per scaricare il risultato */
.pd-sparql-download {
  margin-top: 10px;
  padding: 6px 12px;
  font-size: 14px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
}

.pd-sparql-download:hover {
  background-color: #222;
}

/* Area di output dei risultati */
.pd-sparql-result {
  white-space: pre-wrap;
  background: #f4f4f4;
  color: #222;
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
  margin-top: 15px;
  max-height: 500px;
  overflow: auto;
  border: 1px solid #ddd;
}
