body {
  font-family: Arial, sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f9;
}

.container {
  max-width: 600px;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.feature {
  margin-bottom: 10px;
}

.options {
  margin-left: 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.options label {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}

button {
  margin-left: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

video, audio, img {
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
}

.feature[title] {
  position: relative;
}

.feature[title]:hover::after {
  content: attr(title);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  white-space: nowrap;
  z-index: 10;
  font-size: 12px;
}

input[type="text"], select {
  width: calc(100% - 110px);
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-left: 10px;
}

input[type="file"] {
  display: block;
  margin: 0 auto 20px;
}

pre {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}

#dropArea {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 20px;
  transition: border 0.3s;
}

#dropArea.highlight {
  border-color: #007bff;
}

#cropBox {
  box-sizing: border-box;
  background: rgba(255, 255, 0, 0.15);
}
