:root {
    --bg-main: #0f0f0f;
    --bg-card: #1a1a1a;
    --bg-input: #111;
    --border: #2a2a2a;

    --text-main: #e5e5e5;
    --text-muted: #9ca3af;

    --accent: #10a37f;
    --accent-hover: #0e8f6f;

    --danger: #ef4444;
    --warning: #f59e0b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

h1, h2, h3 {
    font-weight: 600;
    margin-top: 0;
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.3rem;
}

p {
    color: var(--text-muted);
}

input, button, textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
}

button {
    background: var(--accent);
    border: none;
    cursor: pointer;
    font-weight: 500;
}

button:hover {
    background: var(--accent-hover);
}

button.secondary {
    background: transparent;
    border: 1px solid var(--border);
}

button.danger {
    background: var(--danger);
}

button.danger:hover {
    opacity: 0.9;
}

.form-group {
    margin-bottom: 16px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}

.alert.success {
    background: rgba(16, 163, 127, 0.15);
    color: var(--accent);
}

.alert.error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.alert.info {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.table th {
    color: var(--text-muted);
    font-weight: 500;
}

