/* Author: Grok/bentzn */
/* Generated: 2025-07-08 11:19 UTC */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f0f2f5;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 15px;
}

.input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
}

input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

button {
  padding: 12px 24px;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #1d4ed8;
}

.error {
  padding: 12px;
  background-color: #fee2e2;
  color: #dc2626;
  border-radius: 6px;
  margin-bottom: 20px;
}

.results {
  background-color: white;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.results h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.results ul {
  list-style: none;
}

.results > ul > li {
  margin-bottom: 12px;
}

.results ul ul {
  list-style: disc;
  margin-left: 20px;
  margin-top: 8px;
}

.subtext {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.subtext p {
  margin-bottom: 4px;
}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  .input-group {
    flex-direction: column;
  }

  button {
    width: 100%;
  }
}