Add massive collection of CSS, JavaScript and theme assets that were previously excluded: **CSS Files (681 total):** - HVAC plugin-specific styles (hvac-*.css): 34 files including dashboard, certificates, registration, mobile nav, accessibility fixes, animations, and welcome popup - Theme framework files (Astra, builder systems, layouts): 200+ files - Plugin compatibility styles (WooCommerce, WPForms, Elementor, Contact Form 7): 150+ files - WordPress core and editor styles: 50+ files - Responsive and RTL language support: 200+ files **JavaScript Files (400+ total):** - HVAC plugin functionality (hvac-*.js): 27 files including menu systems, dashboard enhancements, profile sharing, mobile responsive features, accessibility, and animations - Framework and library files: jQuery plugins, GSAP, AOS, Swiper, Chart.js, Lottie, Isotope - Plugin compatibility scripts: WPForms, WooCommerce, Elementor, Contact Form 7, LifterLMS - WordPress core functionality: customizer, admin, block editor compatibility - Third-party integrations: Stripe, SMTP, analytics, search functionality **Assets:** - Certificate background images and logos - Comprehensive theme styling infrastructure - Mobile-responsive design systems - Cross-browser compatibility assets - Performance-optimized minified versions **Updated .gitignore:** - Fixed asset directory whitelisting patterns to properly include CSS/JS/images - Added proper directory structure recognition (!/assets/css/, !/assets/js/, etc.) - Maintains security by excluding sensitive files while including essential assets This commit provides the complete frontend infrastructure needed for: - Full theme functionality and styling - Plugin feature implementations - Mobile responsiveness and accessibility - Cross-browser compatibility - Performance optimization - Developer workflow support
		
			
				
	
	
		
			531 lines
		
	
	
	
		
			14 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			531 lines
		
	
	
	
		
			14 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| #wpforms-splash-modal header {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   gap: 30px;
 | |
|   padding: 50px 120px;
 | |
|   background: linear-gradient(180deg, #f6f7f7 0%, rgba(246, 247, 247, 0) 100%);
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal header h2 {
 | |
|   color: #1d2327;
 | |
|   font-size: 24px;
 | |
|   font-weight: 700;
 | |
|   margin: 0 0 5px;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal header img {
 | |
|   max-width: 80px !important;
 | |
|   max-height: 80px;
 | |
|   border: 4px solid #ffffff;
 | |
|   border-radius: 40px;
 | |
|   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   gap: 50px;
 | |
|   margin-bottom: 75px;
 | |
|   padding: 0 120px;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section .wpforms-splash-badge {
 | |
|   border-radius: 3px;
 | |
|   background-color: #edfaef;
 | |
|   padding: 8px 10px;
 | |
|   color: #00ba37;
 | |
|   text-align: center;
 | |
|   font-size: 10px;
 | |
|   font-weight: 700;
 | |
|   line-height: 10px;
 | |
|   letter-spacing: 0.5px;
 | |
|   text-transform: uppercase;
 | |
|   cursor: default;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section h3 {
 | |
|   color: #1d2327;
 | |
|   font-size: 28px;
 | |
|   font-weight: 500;
 | |
|   line-height: 36px;
 | |
|   margin: 15px 0 10px;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section p {
 | |
|   line-height: 25px !important;
 | |
|   opacity: 0.9;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section ul {
 | |
|   list-style: revert;
 | |
|   margin-left: 2em;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section .wpforms-splash-section-buttons {
 | |
|   display: flex;
 | |
|   align-items: flex-start;
 | |
|   gap: 20px;
 | |
|   margin-top: 20px;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section .wpforms-splash-section-buttons .wpforms-btn {
 | |
|   padding: 10px 15px;
 | |
|   font-size: 14px;
 | |
|   line-height: normal;
 | |
|   font-weight: 500;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-fifty-fifty .wpforms-splash-section-content {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-fifty-fifty .wpforms-splash-section-image {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-one-third-two-thirds .wpforms-splash-section-content {
 | |
|   flex: 2;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-one-third-two-thirds .wpforms-splash-section-image {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section:nth-child(odd) .wpforms-splash-section-content {
 | |
|   order: 2;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section:nth-child(odd) .wpforms-splash-section-image {
 | |
|   order: 1;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section .wpforms-splash-section-image {
 | |
|   flex: 0 0 auto;
 | |
|   align-self: center;
 | |
|   justify-self: center;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section .wpforms-splash-section-image.wpforms-image-shadow-apply img {
 | |
|   box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.15);
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section .wpforms-splash-section-image.wpforms-image-shadow-yes img {
 | |
|   max-width: calc(100% + 60px);
 | |
|   margin: -18px 0 -38px -30px;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width {
 | |
|   flex-direction: column;
 | |
|   align-items: center;
 | |
|   gap: 0;
 | |
|   text-align: center;
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width .wpforms-splash-section-content,
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width .wpforms-splash-section-image {
 | |
|   flex: revert;
 | |
|   order: revert;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width .wpforms-splash-section-content {
 | |
|   width: fit-content;
 | |
|   background-color: #f6f7f7;
 | |
|   padding: 50px 120px;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width .wpforms-splash-section-content .wpforms-splash-badge {
 | |
|   background-color: #ffffff;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width .wpforms-splash-section-content h3 {
 | |
|   font-size: 32px;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width .wpforms-splash-section-image {
 | |
|   width: 100%;
 | |
|   background: linear-gradient(180deg, #f6f7f7 50%, #ffffff 50%);
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width .wpforms-splash-section-image img {
 | |
|   max-width: 760px;
 | |
|   padding: 10px;
 | |
|   background: #ffffff;
 | |
|   border-radius: 9px;
 | |
|   box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width .wpforms-splash-section-buttons {
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width h3 {
 | |
|   margin-top: 20px;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width p {
 | |
|   font-size: 18px !important;
 | |
|   line-height: 28px !important;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal footer {
 | |
|   display: flex;
 | |
|   padding: 50px 120px;
 | |
|   align-items: center;
 | |
|   gap: 50px;
 | |
|   background: #2c3338;
 | |
|   box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal footer h2 {
 | |
|   margin: 0 0 10px;
 | |
|   color: #ffffff;
 | |
|   font-size: 28px;
 | |
|   font-weight: 500;
 | |
|   line-height: 36px;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal footer a {
 | |
|   padding: 11px 17px;
 | |
|   font-size: 16px;
 | |
|   font-weight: 500;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal footer p {
 | |
|   color: rgba(255, 255, 255, 0.8) !important;
 | |
|   line-height: 25px !important;
 | |
|   opacity: 0.9;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal .wpforms-btn {
 | |
|   border: 1px;
 | |
|   border-style: solid;
 | |
|   border-radius: 4px;
 | |
|   cursor: pointer;
 | |
|   display: inline-block;
 | |
|   margin: 0;
 | |
|   text-decoration: none;
 | |
|   text-align: center;
 | |
|   vertical-align: middle;
 | |
|   white-space: nowrap;
 | |
|   box-shadow: none;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal .wpforms-btn.inactive {
 | |
|   cursor: no-drop;
 | |
|   pointer-events: none;
 | |
|   box-shadow: none;
 | |
|   opacity: 0.5;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal .wpforms-btn-orange {
 | |
|   background-color: #e27730;
 | |
|   border-color: #e27730;
 | |
|   color: #ffffff;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal .wpforms-btn-orange:hover, #wpforms-splash-modal .wpforms-btn-orange:active, #wpforms-splash-modal .wpforms-btn-orange:focus {
 | |
|   background-color: #cd6622;
 | |
|   border-color: #cd6622;
 | |
|   color: #ffffff;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal .wpforms-btn-orange:focus {
 | |
|   box-shadow: 0 0 0 2px #cd6622;
 | |
|   border-color: #ffffff;
 | |
|   outline: 0;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal .wpforms-btn-bordered {
 | |
|   background-color: #ffffff;
 | |
|   color: #50575e;
 | |
|   border-color: #8c8f94;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal .wpforms-btn-bordered:hover, #wpforms-splash-modal .wpforms-btn-bordered:focus {
 | |
|   color: #2c3338;
 | |
|   border-color: #50575e;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal .wpforms-btn-bordered:focus {
 | |
|   background-color: #ffffff;
 | |
|   box-shadow: 0 0 0 1px #50575e;
 | |
|   outline: 0;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal .wpforms-btn-green {
 | |
|   background-color: #008a20;
 | |
|   color: #ffffff;
 | |
|   border-color: #008a20;
 | |
| }
 | |
| 
 | |
| #wpforms-splash-modal .wpforms-btn-green:hover, #wpforms-splash-modal .wpforms-btn-green:focus {
 | |
|   background-color: #00a32a;
 | |
|   color: #ffffff;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal {
 | |
|   overflow: hidden;
 | |
|   margin-right: var(--wpforms-body-scrollbar-width);
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal #wpadminbar {
 | |
|   width: calc( 100vw - var( --wpforms-body-scrollbar-width ));
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm {
 | |
|   overflow: hidden;
 | |
|   bottom: revert;
 | |
|   min-height: 100vh;
 | |
|   backdrop-filter: blur(4px);
 | |
|   -webkit-backdrop-filter: blur(4px);
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm .jconfirm-cell {
 | |
|   vertical-align: top;
 | |
|   overflow-y: auto;
 | |
|   max-height: 100vh;
 | |
|   height: 100vh;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm .jconfirm-cell::-webkit-scrollbar {
 | |
|   background: transparent;
 | |
|   width: 15px;
 | |
|   height: 15px;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm .jconfirm-cell::-webkit-scrollbar-track {
 | |
|   background: transparent;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm .jconfirm-cell::-webkit-scrollbar-thumb {
 | |
|   box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, 0.05);
 | |
|   background: transparent;
 | |
|   border-radius: 15px;
 | |
|   border: solid 4px transparent;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm .jconfirm-cell::-webkit-resizer, body.wpforms-splash-modal .jconfirm .jconfirm-cell::-webkit-scrollbar-button, body.wpforms-splash-modal .jconfirm .jconfirm-cell::-webkit-scrollbar-corner {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| @-moz-document url-prefix() {
 | |
|   body.wpforms-splash-modal .jconfirm .jconfirm-cell {
 | |
|     scrollbar-color: rgba(0, 0, 0, 0.05) transparent;
 | |
|     scrollbar-gutter: initial !important;
 | |
|     scrollbar-width: thin;
 | |
|   }
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm .jconfirm-cell:hover::-webkit-scrollbar {
 | |
|   background: transparent;
 | |
|   width: 15px;
 | |
|   height: 15px;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm .jconfirm-cell:hover::-webkit-scrollbar-track {
 | |
|   background: transparent;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm .jconfirm-cell:hover::-webkit-scrollbar-thumb {
 | |
|   box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, 0.3);
 | |
|   background: transparent;
 | |
|   border-radius: 15px;
 | |
|   border: solid 4px transparent;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm .jconfirm-cell:hover::-webkit-resizer, body.wpforms-splash-modal .jconfirm .jconfirm-cell:hover::-webkit-scrollbar-button, body.wpforms-splash-modal .jconfirm .jconfirm-cell:hover::-webkit-scrollbar-corner {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| @-moz-document url-prefix() {
 | |
|   body.wpforms-splash-modal .jconfirm .jconfirm-cell:hover {
 | |
|     scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
 | |
|     scrollbar-gutter: initial !important;
 | |
|     scrollbar-width: thin;
 | |
|   }
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm .jconfirm-cell .jc-bs3-container {
 | |
|   padding-bottom: 50px;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm .jconfirm-cell .jconfirm-holder {
 | |
|   width: 100%;
 | |
|   padding: 0 !important;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm.jconfirm-open .jconfirm-bg {
 | |
|   position: sticky;
 | |
|   height: 100%;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm.jconfirm-open .jconfirm-scrollpane {
 | |
|   margin-top: -100vh;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm.jconfirm-modern .jconfirm-bg {
 | |
|   background-color: #72777c;
 | |
|   opacity: 0.75;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm-box {
 | |
|   max-width: 1000px;
 | |
|   width: 100% !important;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm-box-container {
 | |
|   opacity: 0;
 | |
|   padding: 0 50px;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal div.jconfirm .jconfirm-box-container .jconfirm-box {
 | |
|   border-radius: 12px;
 | |
|   box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default {
 | |
|   padding: 0;
 | |
|   transition-duration: initial !important;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal .jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
 | |
|   text-align: revert;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane {
 | |
|   display: block;
 | |
|   margin-bottom: 0;
 | |
|   max-height: none !important;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content {
 | |
|   color: #444444;
 | |
|   font-size: 16px;
 | |
|   line-height: 24px;
 | |
|   margin-bottom: 0;
 | |
|   overflow: inherit;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p {
 | |
|   color: #50575e;
 | |
|   font-size: 16px;
 | |
|   font-weight: 400;
 | |
|   line-height: 22px;
 | |
|   margin-block: 0;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon {
 | |
|   top: 20px;
 | |
|   right: 20px;
 | |
| }
 | |
| 
 | |
| body.wpforms-splash-modal div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon:after {
 | |
|   font-size: 20px;
 | |
| }
 | |
| 
 | |
| @media screen and (max-width: 1024px) {
 | |
|   #wpforms-splash-modal header, #wpforms-splash-modal footer {
 | |
|     padding: 50px;
 | |
|   }
 | |
|   #wpforms-splash-modal main .wpforms-splash-section {
 | |
|     padding: 0 50px;
 | |
|   }
 | |
|   #wpforms-splash-modal main .wpforms-splash-section.wpforms-splash-section-full-width .wpforms-splash-section-content {
 | |
|     padding: 50px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media screen and (max-width: 768px) {
 | |
|   body.wpforms-splash-modal .jconfirm {
 | |
|     display: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| 
 | |
| /* Focus Management Styles - WCAG 2.1 Compliance */
 | |
| /* Added for keyboard accessibility and screen reader support */
 | |
| 
 | |
| /* Button Focus Styles */
 | |
| .hvac-button:focus,
 | |
| .hvac-content .button:focus,
 | |
| .hvac-content button:focus,
 | |
| .hvac-content input[type="submit"]:focus,
 | |
| .hvac-email-submit:focus,
 | |
| .hvac-filter-submit:focus,
 | |
| .hvac-certificate-actions button:focus,
 | |
| .hvac-certificate-actions a:focus {
 | |
|     outline: 2px solid #005fcc;
 | |
|     outline-offset: 2px;
 | |
|     box-shadow: 0 0 0 3px rgba(0, 95, 204, 0.2);
 | |
|     border-radius: 4px;
 | |
| }
 | |
| 
 | |
| /* Input Focus Styles */
 | |
| .hvac-form-input:focus,
 | |
| .hvac-content input[type="text"]:focus,
 | |
| .hvac-content input[type="email"]:focus,
 | |
| .hvac-content input[type="password"]:focus,
 | |
| .hvac-content input[type="url"]:focus,
 | |
| .hvac-content textarea:focus,
 | |
| .hvac-content select:focus,
 | |
| .hvac-email-form-row input:focus,
 | |
| .hvac-email-form-row textarea:focus,
 | |
| .hvac-filter-group input:focus,
 | |
| .hvac-filter-group select:focus {
 | |
|     outline: 2px solid #005fcc;
 | |
|     outline-offset: 2px;
 | |
|     border-color: #005fcc;
 | |
|     box-shadow: 0 0 0 3px rgba(0, 95, 204, 0.2);
 | |
| }
 | |
| 
 | |
| /* Link Focus Styles */
 | |
| .hvac-content a:focus,
 | |
| .hvac-event-link:focus,
 | |
| .hvac-certificate-link:focus,
 | |
| .hvac-attendee-profile-icon:focus,
 | |
| .hvac-dashboard-nav a:focus,
 | |
| .hvac-email-navigation a:focus {
 | |
|     outline: 2px solid #005fcc;
 | |
|     outline-offset: 2px;
 | |
|     text-decoration: underline;
 | |
|     background-color: rgba(0, 95, 204, 0.1);
 | |
|     border-radius: 2px;
 | |
| }
 | |
| 
 | |
| /* Interactive Element Focus Styles */
 | |
| .hvac-attendee-checkbox:focus,
 | |
| .hvac-select-all-container input[type="checkbox"]:focus,
 | |
| .hvac-modal-close:focus,
 | |
| .hvac-certificate-table tr:focus {
 | |
|     outline: 2px solid #005fcc;
 | |
|     outline-offset: 2px;
 | |
|     box-shadow: 0 0 0 3px rgba(0, 95, 204, 0.2);
 | |
| }
 | |
| 
 | |
| /* High Contrast Mode Support */
 | |
| @media (prefers-contrast: high) {
 | |
|     .hvac-content *:focus {
 | |
|         outline: 3px solid #000000;
 | |
|         outline-offset: 2px;
 | |
|         background-color: #ffff00;
 | |
|         color: #000000;
 | |
|     }
 | |
| }
 | |
| 
 | |
| /* Focus-visible polyfill support */
 | |
| 
 | |
| /* Reset focus for mouse users while preserving keyboard accessibility */
 | |
| .js-focus-visible :focus:not(.focus-visible) {
 | |
|     outline: none;
 | |
|     box-shadow: none;
 | |
| }
 | |
| 
 | |
| /* Ensure focus is visible for keyboard users */
 | |
| .js-focus-visible .focus-visible {
 | |
|     outline: 2px solid #005fcc;
 | |
|     outline-offset: 2px;
 | |
| }
 |