diff --git a/.cursor/rules/accessibility-standards.mdc b/.cursor/rules/accessibility-standards.mdc
index 7729123..22885e4 100644
--- a/.cursor/rules/accessibility-standards.mdc
+++ b/.cursor/rules/accessibility-standards.mdc
@@ -6,51 +6,39 @@ globs: *.vue, *.jsx, *.tsx, *.html, *.php
Ensures WCAG compliance and accessibility best practices.
-
-name: accessibility_standards
-description: Enforce accessibility standards and WCAG compliance
-filters:
- - type: file_extension
- pattern: "\\.(vue|jsx|tsx|html|php|css|scss|sass)$" # Expanded to include CSS files
-
-actions:
- - type: enforce
- conditions:
- - pattern: "
]+(?!alt=)[^>]*>"
- message: "Images must have alt attributes for screen readers."
-
- - pattern: "aria-[a-z]+=\"\""
- message: "ARIA attributes should not be empty; provide meaningful values."
-
- - pattern: ""
- message: "Buttons should have meaningful, descriptive content."
-
- - pattern: "]*href=\"#[^\"]*\"[^>]*>(?![^<]*
\ No newline at end of file
+## Rule Details
+
+- **Name:** accessibility_standards
+
+- **Description:** Enforce accessibility standards and WCAG compliance
+
+## Filters
+- file extension pattern: `"\\.(vue|jsx|tsx|html|php|css|scss|sass)$" # Expanded to include CSS files`
+
+## Enforcement Checks
+- Conditions:
+ - pattern `
]+(?!alt=)[^>]*>` – Images must have alt attributes for screen readers.
+ - pattern `aria-[a-z]+=\"\"` – ARIA attributes should not be empty; provide meaningful values.
+ - pattern `` – Buttons should have meaningful, descriptive content.
+ - pattern `]*href=\"#[^\"]*\"[^>]*>(?![^<]*