/* EduNudge Themes - Phase 2 Placeholder */

/* Theme switching will be implemented in Phase 2 */

/* Classic Blue (Default) - Already defined in style.css */

/* Warm Classroom Theme */
[data-theme="warm"] {
    --primary-color: #f59e0b;
    --primary-dark: #d97706;
    --secondary-color: #fb923c;
    --accent-color: #fbbf24;
    --status-green: #10b981;
    --status-yellow: #f59e0b;
    --status-orange: #f97316;
    --status-red: #ef4444;
}

/* Nature Green Theme */
[data-theme="nature"] {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --secondary-color: #34d399;
    --accent-color: #6ee7b7;
}

/* High Contrast Theme */
[data-theme="contrast"] {
    --primary-color: #0000ff;
    --primary-dark: #0000cc;
    --secondary-color: #000000;
    --accent-color: #ffff00;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-primary: #000000;
    --text-secondary: #333333;
    --border-color: #000000;
}

/* Minimal Grayscale Theme */
[data-theme="minimal"] {
    --primary-color: #374151;
    --primary-dark: #1f2937;
    --secondary-color: #6b7280;
    --accent-color: #9ca3af;
    --bg-color: #f9fafb;
    --card-bg: #ffffff;
    --text-primary: #111827;
    --text-secondary: #6b7280;
}

/* EduNudge Premium Theme for Buttons */
.btn-manage-primary {
    background: linear-gradient(135deg, #ff8c00 0%, #ed6a1d 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(237, 106, 29, 0.2);
}

.btn-manage-primary:hover {
    background: linear-gradient(135deg, #ed6a1d 0%, #d45a16 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(237, 106, 29, 0.3);
}
