/* Stile globale */
body { 
  font-family: monospace, monospace; 
  background: #111; 
  color: #0f0; 
  margin: 0;
  padding: 20px;
}

/* Titoli */
h1, h2, h3 {
  color: #0f0;
  font-weight: normal;
  margin-bottom: 10px;
}

/* Area log */
#log { 
  white-space: pre-wrap; 
  max-height: 70vh; 
  overflow-y: auto; 
  border: 1px solid #333; 
  border-radius: 6px;
  padding: 10px; 
  background: #000;
  color: #0f0;
  line-height: 1.4;
  box-shadow: 0 0 10px rgba(0,255,0,0.2);
  -webkit-text-size-adjust: 100%;
}

/* Barra delle impostazioni */
form { 
  margin-bottom: 15px; 
  padding: 10px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #1a1a1a;
}

/* Campi e bottoni */
select, input, button { 
  margin-right: 10px; 
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #333;
  background: #222;
  color: #0f0;
  font-family: inherit;
}

/* Bottoni con effetto hover */
button {
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background: #0f0;
  color: #111;
  border-color: #0f0;
}

/* Input focus */
input:focus, select:focus {
  outline: none;
  border-color: #0f0;
  box-shadow: 0 0 5px rgba(0,255,0,0.5);
}

/* Scrollbar stile minimale */
#log::-webkit-scrollbar {
  width: 8px;
}
#log::-webkit-scrollbar-track {
  background: #111;
}
#log::-webkit-scrollbar-thumb {
  background: #0f0;
  border-radius: 4px;
}
