/* Themes */

/* Default (Cool - Blues) */
:root {
    --primary-color: #2c3e50;
    --primary-dark: #1a252f;
    --accent-color: #3498db;
}

/* Theme: Dark */
body.theme-dark {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --primary-color: #000000;
    --primary-dark: #333333;
    --accent-color: #bb86fc;
    --card-shadow: 0 4px 6px rgba(255, 255, 255, 0.05);
}

body.theme-dark .card,
body.theme-dark .top-bar {
    background: #2d2d2d;
    color: #e0e0e0;
}

body.theme-dark .table th {
    background-color: #333;
    color: #fff;
}

body.theme-dark .form-control {
    background: #333;
    border-color: #444;
    color: #fff;
}

/* Theme: Green Forest */
body.theme-green-forest {
    --primary-color: #27ae60;
    --primary-dark: #219150;
    --accent-color: #f1c40f;
}

/* Theme: Cherry Pink */
body.theme-cherry-pink {
    --primary-color: #c0392b;
    --primary-dark: #a93226;
    --accent-color: #e84393;
}

/* Theme: Autumn Peach */
body.theme-autumn-peach {
    --primary-color: #d35400;
    --primary-dark: #ba4a00;
    --accent-color: #f39c12;
}