/*
Theme Name: Fluent Bricks CRM
Theme URI: https://example.com/
Author: Custom Build
Description: Bricks-based CRM portal theme optimized for FluentCRM and WP E-Signature.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
Text Domain: fluent-bricks-crm
*/

/* Base App Layout Styles */

:root {
  --primary-color: #2563eb;
  --success-color: #16a34a;
  --warning-color: #f59e0b;
  --bg-light: #f8fafc;
  --border-color: #e5e7eb;
}

body {
  background: var(--bg-light);
}

.crm-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 24px;
}

.crm-badge-success {
  background: var(--success-color);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.crm-badge-warning {
  background: var(--warning-color);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}
