:root {
    --bg-color: #f7f9fc;
    --text-color: #222222;
    --accent-color: #2563eb;
    --card-bg: #ffffff;
    --border-color: #cbd5e1;
}

[data-theme="noir"] {
    --bg-color: #0f1117;
    --text-color: #94a3b8;
    --accent-color: #38bdf8;
    --card-bg: #1e293b;
    --border-color: #334155;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: monospace;
    margin: 0;
    padding: 3rem 1rem;
    transition: background 0.2s ease, color 0.2s ease;
}

#app-container {
    max-width: 520px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

button {
    background: var(--accent-color);
    color: var(--bg-color);
    border: none;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    font-weight: bold;
    font-family: monospace;
}

input {
    background: var(--bg-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.6rem;
    width: 100%;
    margin-bottom: 1rem;
    box-sizing: border-box;
    font-family: monospace;
}

.error-msg {
    color: #ef4444;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}
