<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 100%;
}

h1 {
  color: #333;
  margin-bottom: 0.5rem;
}

p {
  color: #666;
  margin-bottom: 1.5rem;
}

.upload-box {
  margin-bottom: 1.5rem;
}

.upload-label {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.upload-label:hover {
  background: #0056b3;
}

#fileInput {
  display: none;
}

.options {
  margin-bottom: 1.5rem;
}

.options label {
  margin-right: 10px;
  color: #333;
}

.options select {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.options button {
  padding: 5px 15px;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.options button:hover {
  background: #218838;
}

.output {
  margin-top: 1.5rem;
}

#preview {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 1rem;
  display: none;
}

.hidden {
  display: none;
}

#downloadLink {
  display: inline-block;
  padding: 10px 20px;
  background: #17a2b8;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

#downloadLink:hover {
  background: #138496;
}</pre></body></html>