.container.fullscreen {
  padding: 1em;
  max-width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1em;
  box-sizing: border-box;
}

textarea#editor {
  flex: 1;
  height: 100%;
  background: #222;
  color: #fff;
  font-size: 1.2em;
  border: none;
  padding: 1em;
  border-radius: 10px;
  resize: none;
  box-sizing: border-box;
}

.editor-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
  padding: 1em 0;
  width: 3em;
}

.editor-controls button {
  font-size: 1.5em;
  padding: 0.5em;
  background: #333;
  color: white;
  border: none;
  border-radius: 0.5em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.editor-controls button:hover {
  background: #555;
}

.completer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8em;
  padding: 1em 0;
}

.completer.hidden {
  display: none;
}

.completer button {
  font-size: 1.1em;
  padding: 1em;
  border: none;
  background: #444;
  color: white;
  border-radius: 1em;
  flex: 1 1 40%;
  max-width: 45%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.completer button:hover {
  background: #666;
}

.mic-input {
  display: flex;
  gap: 0.5em;
  padding: 1em 0;
  align-items: center;
}

.mic-input.hidden {
  display: none;
}

.mic-input input {
  flex: 1;
  font-size: 1em;
  padding: 0.5em;
  border-radius: 0.5em;
  border: none;
  background: #333;
  color: #fff;
}

.mic-input button {
  font-size: 1.2em;
  padding: 0.6em 1em;
  background: #555;
  color: white;
  border: none;
  border-radius: 0.6em;
  cursor: pointer;
}
