/* frontend/css/theme.css */
:root {
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Светлая тема (по умолчанию) */
.theme-light {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-table: #ffffff;
    --text-primary: #000000;
    --text-secondary: #6c757d;
    --border-color: #e9ecef;
    --accent-blue: #007AFF;
    --accent-green: #34C759;
    --accent-red: #FF3B30;
    --accent-orange: #FF9500;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --table-header-bg: #f8f9fa;
    --input-bg: #ffffff;
    --input-border: #ced4da;
}

/* Темная тема */
.theme-dark {
    --bg-primary: #1c1c1e;
    --bg-secondary: #2c2c2e;
    --bg-table: #2c2c2e;
    --text-primary: #ffffff;
    --text-secondary: #98989d;
    --border-color: #3a3a3c;
    --accent-blue: #0A84FF;
    --accent-green: #30D158;
    --accent-red: #FF453A;
    --accent-orange: #FF9F0A;
    --shadow: 0 2px 10px rgba(0,0,0,0.3);
    --table-header-bg: #3a3a3c;
    --input-bg: #3a3a3c;
    --input-border: #48484a;
}