/* SuperMorse Web App Styles */

body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  padding: 30px;
  display: flex;
  justify-content: center;
}

.container {
  background: white;
  padding: 20px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 12px;
  background: #0057ff;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-bottom: 10px;
}

button:hover {
  background: #0042c7;
}

pre {
  white-space: pre-wrap;
  background: #fafafa;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}