body {
  font-family: sans-serif;
  margin: 20px;
}

h1 {
  text-align: center;
}

form {
  margin-bottom: 20px;
}

fieldset {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
}

legend {
  font-weight: bold;
}

label {
  display: block;
  margin-bottom: 5px;
}

select,
input[type="file"],
button {
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
}

#container {
  display: flex;
}

#transcript-list {
  width: 250px;
  margin-right: 20px;
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

#transcript-list ul {
  list-style: none;
  padding: 0;
}

#transcript-list li {
  cursor: pointer;
  margin-bottom: 8px;
  color: #007bff;
}

#transcript-list li:hover {
  text-decoration: underline;
}

#result {
  flex: 1;
}

#transcript-content {
  white-space: pre-wrap; /* Preserve line breaks */
  font-family: monospace;
}