
* {
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f0f0f0;
  font-size: 8px;  /* Schriftgröße für den gesamten Body */
  color: #333;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  margin-top: 20px;
  font-size: 10px;  /* Schriftgröße für Titel */
  font-weight: bold;
  color: #4CAF50;
}

#jsonld-form {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #555;
}

input, button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 8px;  /* Schriftgröße für Input und Buttons */
  margin-top: 5px;
}

input {
  background-color: #f9f9f9;
  color: #333;
}

input:focus {
  outline: none;
  border-color: #4CAF50;
  background-color: #f1f1f1;
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 8px;  /* Schriftgröße für Button */
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

button:disabled {
  background-color: #b0b0b0;
  cursor: not-allowed;
}

.feedback {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: center;
  color: #333;
}

.output {
  max-height: 400px;
  overflow-y: auto;
  background-color: #333;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  font-family: 'Courier New', monospace;
}

.mt-4.text-center.text-xs.text-zinc-500 {
  font-size: 8px;  /* Schriftgröße für Footer */
  text-align: center;
  color: #aaa;
}

#social-networks, #faq-questions {
  margin-bottom: 20px;
}

#social-networks .form-group, #faq-questions .form-group {
  margin-bottom: 15px;
}

/* Sicherheitsaspekte */

/* Content Security Policy (CSP) - Dies sollte auf Server-Ebene auch implementiert werden */
meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; object-src 'none';"

/* Eingabevalidierung und sicheres Arbeiten mit Benutzereingaben */
input[type="url"], input[type="text"] {
  /* Validierung sicherstellen, dass URLs korrekt sind */
}

.mt-4.text-center.text-xs.text-zinc-500 {
  font-size: 8px;  /* Font size set to 8px */
  text-align: center;  /* Center align the footer text */
  color: #aaa;
  margin-top: 20px;
}
