/* Grundlayout */
html, body {
  min-height: 100vh;
  margin: 0;
  padding: 40px;
  font-family: 'Comic Sans MS', 'Papyrus', cursive, fantasy;
  background: linear-gradient(to bottom, #fffce8, #330165);
  color: middlegrey;
  text-align: center;
}

/* Überschriften */
h1 {
  font-size: 36px;
  color: #cc00cc;
  margin-bottom: 20px;
  text-shadow: 2px 2px #ffffff;
}

h2 {
  font-size: 20px;
  margin-top: 30px;
  color: #222;
}

/* Generator Box */
.generator-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

/* Buttons */
button {
  background-color: hotpink;
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: deeppink;
}

/* Tabs Navigation */
nav.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

nav.tabs button {
  background-color: #dda0dd;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  font-size: 16px;
  transition: background-color 0.2s;
}

nav.tabs button:hover {
  background-color: #ba55d3;
}

/* Tab Content */
.tab-content {
  display: none;
}

/* Video */
video#loadingVideo {
  display: block;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 20, 147, 0.5);
}

/* Ausgabe-Felder */
#output, #output2 {
  margin: 30px auto;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 80%;
  max-width: 900px;
  min-height: 150px;
  text-align: left;
  border: 1px solid #ccc;
}

/* E-Mail-Eingabe */
input[type="email"] {
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 300px;
}

/* Bild als Button */
#startImage {
  width: 30%;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#startImage:hover {
  box-shadow: 0 16px 16px rgba(0, 0, 0, 0.5);
}

/* Prompt-Bereich */
#bildpromptTab {
  border: 1px dashed #888;
  padding: 1em;
  margin-bottom: 10px;
  background: #f9f9f9;
}

/* Elemente, die während Ladevorgängen versteckt werden sollen */
.hidden-during-loading {
  display: none !important;
}
#loadingGif{
width: 20%;
}
