/* styles.css – Dark Mode */

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    margin: 0;
    padding: 1rem;
}

h1, h2, h3 {
    color: #ffffff;
    font-weight: 600;
}

textarea, select, input, pre, code {
    font-family: 'Fira Code', monospace;
    background-color: #121212;
    color: #dcdcdc;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 0.75rem;
    width: 100%;
    box-sizing: border-box;
}

textarea {
    min-height: 400px;
    resize: vertical;
}

button {
    background-color: #1db954;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #2563eb;
}

a {
    color: #60a5fa;
    text-decoration: underline;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

select {
    max-width: 200px;
}

pre {
    overflow-x: auto;
    padding: 1rem;
    background-color: #1a1a1a;
    border-left: 4px solid #3b82f6;
}

.hljs {
    background: none;
}

footer {
  margin-top: 40px;
  font-size: 14px;
  color: #888;
}