/**
 * main.css
 * Drone-Quote Builder - Main Stylesheet
 *
 * This file serves as the main entry point for all project-specific CSS.
 * VM Design System core files are loaded separately in base.html.
 *
 * Created: 2025-10-23 12:00:00 (GMT+2)
 * Task: 13.3 - Phase 1 UI Asset Setup
 */

/* =============================================================================
   PROJECT-SPECIFIC STYLES
   ============================================================================= */

/* TODO: Add project-specific overrides and custom styles here */

/* Example: Custom quote builder styles */
.quote-builder {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--vm-spacing-lg, 24px);
}

.quote-summary {
  background: var(--vm-gray-50, #f9fafb);
  border-radius: var(--vm-border-radius-md, 8px);
  padding: var(--vm-spacing-md, 16px);
  margin-bottom: var(--vm-spacing-lg, 24px);
}

/* End of main.css */
