html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
form,
textarea,
label,
button {
  margin: 0;
  padding: 0rem;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  height: 100vh;
  background-color: #f0f0f0;
  align-items: center;
}

.admin-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.button {
  padding: 0.5rem 2rem;
  font-size: 20px;
  text-decoration: none;
  color: white;
  background-color: #007bff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: all 200ms ease;
  cursor: pointer;
}

.button:hover {
  background-color: #0056b3;
  transform: scale(0.9);
}

#prompt-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  align-items: center;
  justify-content: center;
}

#prompt-form textarea {
  width: 80%;
  padding: 1rem;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  .admin-panel {
    gap: 1rem;
  }

  #prompt-form textarea {
    width: 90%;
  }

  #prompt-form {
    width: 90%;
  }

  .button {
    font-size: 18px;
    padding: 0.5rem 1.5rem;
  }
}
