styles/components/.cursor/rules/component-styles.md
When working with component-specific CSS in styles/components:
Each component that requires custom CSS has a corresponding file:
button.css - Fire-inspired button shadows and effectsmodal.css - Modal animations and backdrop effectsspinner.css - Custom loading animationsAll component CSS files are imported in styles/main.css:
/* Component styles */
@import "./components/button.css";
@import "./components/modal.css";
@import "./components/spinner.css";
.button-primary, .modal-backdrop.button-primary {
background: #fa5d19; /* sRGB fallback */
background: color(display-p3 0.9816 0.3634 0.0984); /* P3 color */
}