body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 10px;
  background: #1e1e1e;
  color: #e0e0e0;
}
.form-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #2a2a2a;
  z-index: 10;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  text-align: center;
}
h1 {
  font-size: 1.5em;
  margin: 0 0 10px;
}
p {
  margin: 0 0 10px;
  font-size: 0.9em;
}
input[type="url"] {
  width: 60%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #333;
  color: #e0e0e0;
  margin-right: 10px;
}
button {
  padding: 10px 20px;
  background: #0288d1;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: #01579b;
}
#panicButton {
  background: #d32f2f;
  margin-left: 10px;
}
#panicButton:hover {
  background: #b71c1c;
}
#content iframe {
  width: 100vw;
  height: calc(100vh - 120px);
  border: none;
  margin-top: 120px;
  background: white;
}
#content p {
  text-align: center;
  margin-top: 130px;
  font-size: 1.1em;
}
@media (max-width: 600px) {
  input[type="url"] {
    width: 50%;
  }
  button {
    padding: 8px 15px;
  }
}