/* Light theme (default) */
:root {
    --bg-primary: #fff;
    --bg-secondary: #f5f5f7;
    --text-primary: #333;
    /* Text colors */
    --text-secondary: #666;
    --border-color: #ddd;
    /* UI colors */
    --accent-color: #007bff;
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --hover-color: #f0f0f0;
}

[data-theme="dark"] {
    /* Dark theme overrides */
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --text-primary: #e0e0e0;
    /* Text colors */
    --text-secondary: #a0a0a5;
    --border-color: #333;
    --hover-color: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}