:root{--bg-primary:#fff;--bg-secondary:#f8f9fa;--bg-tertiary:#e9ecef;--text-primary:#212529;--text-secondary:#6c757d;--text-muted:#adb5bd;--border-color:#dee2e6;--header-bg:#2d3748;--header-text:#fff;--accent-color:#007bff;--success-color:#28a745;--danger-color:#dc3545;--warning-color:#ffc107;--info-color:#17a2b8;--input-bg:#fff;--shadow:rgba(0,0,0,.1)}[data-theme=dark]{--bg-primary:#1a202c;--bg-secondary:#2d3748;--bg-tertiary:#4a5568;--text-primary:#f7fafc;--text-secondary:#e2e8f0;--text-muted:#a0aec0;--border-color:#4a5568;--header-bg:#1a202c;--header-text:#f7fafc;--accent-color:#3182ce;--success-color:#38a169;--danger-color:#e53e3e;--warning-color:#d69e2e;--info-color:#3182ce;--input-bg:#2d3748;--shadow:rgba(0,0,0,.3)}*{box-sizing:border-box}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#212529;color:var(--text-primary);font-family:Montserrat,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0;transition:background-color .3s ease,color .3s ease}.app,body{background-color:#fff;background-color:var(--bg-primary)}.app{display:flex;flex-direction:column;min-height:100vh;transition:background-color .3s ease}.header{background-color:#2d3748;background-color:var(--header-bg);box-shadow:0 2px 10px rgba(0,0,0,.1);box-shadow:0 2px 10px var(--shadow);color:#fff;color:var(--header-text);padding:20px 0;position:sticky;top:0;z-index:100}.header-content{align-items:center;display:flex;justify-content:space-between;margin:0 auto;max-width:1200px;padding:0 20px}.header-left h1{color:#fff;color:var(--header-text);font-size:1.8rem;font-weight:600;margin:0}.header-left p{color:#adb5bd;color:var(--text-muted);font-size:.9rem;margin:5px 0 0;opacity:.8}.header-right{align-items:center;display:flex;gap:20px}.theme-toggle-btn{align-items:center;background:none;border:none;border-radius:50%;cursor:pointer;display:flex;font-size:1.5rem;justify-content:center;padding:8px;transition:background-color .3s ease}.theme-toggle-btn:hover{background-color:hsla(0,0%,100%,.1)}.language-toggle-btn{align-items:center;background:none;border:1px solid hsla(0,0%,100%,.3);border-radius:4px;color:#fff;color:var(--header-text);cursor:pointer;display:flex;font-size:.8rem;font-weight:600;justify-content:center;letter-spacing:.5px;min-width:40px;padding:6px 12px;transition:all .3s ease}.language-toggle-btn:hover{background-color:hsla(0,0%,100%,.1);border-color:hsla(0,0%,100%,.5);transform:translateY(-1px)}.language-toggle-btn:active{transform:translateY(0)}.brand{color:#fff;color:var(--header-text);font-size:1.5rem;font-weight:700;letter-spacing:1px}.main-container{grid-gap:30px;display:grid;flex:1 1;gap:30px;grid-template-columns:1fr 1fr;margin:0 auto;max-width:1200px;padding:30px 20px}@media (max-width:768px){.main-container{gap:20px;grid-template-columns:1fr;padding:20px}.header-content{flex-direction:column;gap:15px;text-align:center}.header-right{flex-direction:row-reverse}}.section{background:#fff;background:var(--bg-primary);border:1px solid #dee2e6;border:1px solid var(--border-color);border-radius:12px;box-shadow:0 4px 20px rgba(0,0,0,.1);box-shadow:0 4px 20px var(--shadow);overflow:hidden;transition:all .3s ease}.section:hover{box-shadow:0 8px 30px rgba(0,0,0,.1);box-shadow:0 8px 30px var(--shadow);transform:translateY(-2px)}.section-header{align-items:center;background:#f8f9fa;background:var(--bg-secondary);border-bottom:1px solid #dee2e6;border-bottom:1px solid var(--border-color);display:flex;justify-content:space-between;padding:20px}.section-title{color:#212529;color:var(--text-primary);font-size:1.1rem;font-weight:600;margin:0}.section-content{padding:20px}.url-input-container{display:flex;gap:15px;margin-bottom:20px}.url-input{background-color:#fff;background-color:var(--input-bg);border:1px solid #dee2e6;border:1px solid var(--border-color);border-radius:8px;color:#212529;color:var(--text-primary);flex:1 1;font-size:14px;padding:12px 16px;transition:all .3s ease}.url-input:focus{border-color:#007bff;border-color:var(--accent-color);box-shadow:0 0 0 3px rgba(0,123,255,.1);outline:none}.editor-container{position:relative}.editor{background-color:#fff;background-color:var(--input-bg);border:1px solid #dee2e6;border:1px solid var(--border-color);border-radius:8px;color:#212529;color:var(--text-primary);font-family:Courier New,Consolas,monospace;font-size:14px;height:400px;line-height:1.6;padding:16px;resize:vertical;transition:all .3s ease;width:100%}.editor:focus{border-color:#007bff;border-color:var(--accent-color);box-shadow:0 0 0 3px rgba(0,123,255,.1);outline:none}.editor.error{background-color:rgba(220,53,69,.05);border-color:#dc3545;border-color:var(--danger-color)}.editor.valid{background-color:rgba(40,167,69,.05);border-color:#28a745;border-color:var(--success-color)}.output-container{background-color:#fff;background-color:var(--input-bg);border:1px solid #dee2e6;border:1px solid var(--border-color);border-radius:8px;height:400px;overflow:hidden;position:relative}.output-content{height:100%;overflow:auto;padding:16px}.output-pre{word-wrap:break-word;color:#212529;color:var(--text-primary);font-family:Courier New,Consolas,monospace;font-size:14px;line-height:1.6;margin:0;white-space:pre-wrap}.controls{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:20px}.btn{align-items:center;border:none;border-radius:8px;cursor:pointer;display:inline-flex;font-family:Montserrat,sans-serif;font-size:14px;font-weight:500;gap:8px;padding:12px 24px;transition:all .3s ease}.btn:disabled{cursor:not-allowed;opacity:.6}.btn-primary{background-color:#007bff;background-color:var(--accent-color);color:#fff}.btn-primary:hover:not(:disabled){background-color:#0056b3;transform:translateY(-1px)}.btn-success{background-color:#28a745;background-color:var(--success-color);color:#fff}.btn-success:hover:not(:disabled){background-color:#218838;transform:translateY(-1px)}.btn-danger{background-color:#dc3545;background-color:var(--danger-color);color:#fff}.btn-danger:hover:not(:disabled){background-color:#c82333;transform:translateY(-1px)}.btn-secondary{background-color:#6c757d;background-color:var(--text-secondary);color:#fff}.btn-secondary:hover:not(:disabled){background-color:#5a6268;transform:translateY(-1px)}.status-message{border-left:4px solid;border-radius:8px;font-size:14px;font-weight:500;margin:20px;max-width:1200px;padding:16px 20px}.status-success{background-color:rgba(40,167,69,.1);border-color:#28a745;border-color:var(--success-color);color:#28a745;color:var(--success-color)}.status-error{background-color:rgba(220,53,69,.1);border-color:#dc3545;border-color:var(--danger-color);color:#dc3545;color:var(--danger-color)}.status-info{background-color:rgba(23,162,184,.1);border-color:#17a2b8;border-color:var(--info-color);color:#17a2b8;color:var(--info-color)}.error-details{background-color:rgba(220,53,69,.05);border:1px solid rgba(220,53,69,.2);border-radius:6px;color:#dc3545;color:var(--danger-color);font-family:Courier New,monospace;font-size:13px;margin-top:15px;padding:15px}.error-location{margin-bottom:8px}.loading-spinner{animation:spin 1s linear infinite;border:2px solid hsla(0,0%,100%,.3);border-radius:50%;border-top-color:currentcolor;display:inline-block;height:16px;width:16px}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.syntax-help{background-color:#f8f9fa;background-color:var(--bg-secondary);border:1px solid #dee2e6;border:1px solid var(--border-color);border-radius:12px;margin:30px 20px;max-width:1200px;padding:25px}.syntax-help h3{color:#212529;color:var(--text-primary);font-weight:600;margin-top:0}.syntax-help ul{margin:0;padding-left:20px}.syntax-help li{color:#6c757d;color:var(--text-secondary);line-height:1.5;margin-bottom:8px}.syntax-help code{background-color:#e9ecef;background-color:var(--bg-tertiary);border-radius:4px;color:#212529;color:var(--text-primary);font-size:13px;padding:2px 6px}.copy-notification{animation:slideIn .3s ease-out;background-color:#28a745;background-color:var(--success-color);border-radius:8px;box-shadow:0 4px 20px rgba(0,0,0,.1);box-shadow:0 4px 20px var(--shadow);color:#fff;font-weight:500;padding:12px 20px;position:fixed;right:20px;top:20px;z-index:1000}@keyframes slideIn{0%{opacity:0;transform:translateX(100%)}to{opacity:1;transform:translateX(0)}}.modal-overlay{align-items:center;animation:fadeIn .2s ease-out;background-color:rgba(0,0,0,.6);bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1000}.modal-content{animation:slideUp .3s ease-out;background:#fff;background:var(--bg-primary);border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,.1);box-shadow:0 20px 60px var(--shadow);max-height:90vh;max-width:90vw;overflow:hidden;width:800px}.modal-header{align-items:center;background-color:#f8f9fa;background-color:var(--bg-secondary);border-bottom:1px solid #dee2e6;border-bottom:1px solid var(--border-color);display:flex;justify-content:space-between;padding:20px}.modal-header h3{color:#212529;color:var(--text-primary);font-weight:600;margin:0}.modal-close{align-items:center;background:none;border:none;border-radius:50%;color:#6c757d;color:var(--text-secondary);cursor:pointer;display:flex;font-size:24px;height:35px;justify-content:center;padding:5px;transition:all .2s ease;width:35px}.modal-close:hover{background-color:#e9ecef;background-color:var(--bg-tertiary)}.modal-body,.modal-close:hover{color:#212529;color:var(--text-primary)}.modal-body{max-height:60vh;overflow-y:auto;padding:20px}.modal-footer{background-color:#f8f9fa;background-color:var(--bg-secondary);border-top:1px solid #dee2e6;border-top:1px solid var(--border-color);display:flex;gap:10px;justify-content:flex-end;padding:20px}.repair-suggestions-preview{animation:slideIn .3s ease-out}.changes-summary{background-color:rgba(23,162,184,.1);border:1px solid rgba(23,162,184,.3);border-radius:8px;color:#17a2b8;color:var(--info-color);font-size:14px;margin-bottom:20px;padding:15px}.comparison-container{grid-gap:20px;display:grid;gap:20px;grid-template-columns:1fr 1fr;margin-bottom:20px}@media (max-width:768px){.comparison-container{grid-template-columns:1fr}}.comparison-section h4{color:#212529;color:var(--text-primary);font-size:14px;font-weight:600;margin:0 0 10px}.comparison-code{word-wrap:break-word;background-color:#f8f9fa;background-color:var(--bg-secondary);border:1px solid #dee2e6;border:1px solid var(--border-color);border-radius:6px;font-family:Courier New,monospace;font-size:12px;line-height:1.4;margin:0;max-height:200px;overflow-y:auto;padding:15px;white-space:pre-wrap}.error-code{background-color:rgba(220,53,69,.05);border-color:rgba(220,53,69,.3);color:#dc3545;color:var(--danger-color)}.success-code{background-color:rgba(40,167,69,.05);border-color:rgba(40,167,69,.3);color:#28a745;color:var(--success-color)}.changes-details{background-color:#f8f9fa;background-color:var(--bg-secondary);border:1px solid #dee2e6;border:1px solid var(--border-color);border-radius:6px;padding:15px}.changes-details h4{color:#212529;color:var(--text-primary);font-size:14px;font-weight:600;margin:0 0 10px}.changes-details ul{margin:0;padding-left:20px}.change-item{font-size:13px;margin-bottom:8px}.change-item code{background-color:#e9ecef;background-color:var(--bg-tertiary);border-radius:3px;font-size:12px;padding:2px 4px}.change-added{color:#28a745;color:var(--success-color)}.change-removed{color:#dc3545;color:var(--danger-color)}.change-added code{background-color:rgba(40,167,69,.1);color:#28a745;color:var(--success-color)}.change-removed code{background-color:rgba(220,53,69,.1);color:#dc3545;color:var(--danger-color)}.footer{background-color:#2d3748;color:#f7fafc;margin-top:auto}[data-theme=dark] .footer{background-color:#1a202c}.footer-main{grid-gap:40px;display:grid;gap:40px;grid-template-columns:2fr 1fr 1fr 1fr;margin:0 auto;max-width:1200px;padding:60px 20px 40px}.footer-section{display:flex;flex-direction:column}.footer-brand{max-width:350px}.footer-logo{gap:12px;margin-bottom:20px}.footer-logo,.logo-icon{align-items:center;display:flex}.logo-icon{background:linear-gradient(135deg,#667eea,#764ba2);border-radius:8px;color:#fff;font-size:20px;font-weight:700;height:40px;justify-content:center;width:40px}.logo-text{color:#f7fafc;font-size:24px;font-weight:700;letter-spacing:1px}.footer-description{color:#cbd5e0;font-size:14px;line-height:1.6;margin-bottom:30px}.footer-contact{display:flex;flex-direction:column;gap:12px}.contact-item{align-items:center;color:#e2e8f0;display:flex;font-size:14px;gap:10px}.contact-icon{font-size:16px;width:20px}.footer-title{color:#f7fafc;font-size:16px;font-weight:600;margin-bottom:20px;margin-top:0}.footer-links{display:flex;flex-direction:column;gap:12px;list-style:none;margin:0;padding:0}.footer-links li{margin:0}.footer-links a{color:#cbd5e0;font-size:14px;text-decoration:none;transition:color .3s ease}.footer-links a:hover{color:#667eea}.cookie-settings-btn{background:none;border:none;color:#cbd5e0;cursor:pointer;font-family:inherit;font-size:14px;padding:0;text-align:left;text-decoration:none;transition:color .3s ease}.cookie-settings-btn:hover{color:#667eea}.social-links{display:flex;gap:15px}.social-link{align-items:center;background-color:hsla(0,0%,100%,.1);border-radius:8px;display:flex;height:40px;justify-content:center;text-decoration:none;transition:all .3s ease;width:40px}.social-link:hover{background-color:hsla(0,0%,100%,.2);transform:translateY(-2px)}.social-icon{font-size:18px}.footer-bottom{border-top:1px solid hsla(0,0%,100%,.1);padding:20px 0}.footer-bottom-content{align-items:center;color:#a0aec0;display:flex;font-size:13px;justify-content:space-between;margin:0 auto;max-width:1200px;padding:0 20px}.footer-bottom-right{display:flex;gap:20px}@media (max-width:1024px){.footer-main{gap:40px;grid-template-columns:1fr 1fr}.footer-brand{grid-column:1/-1;max-width:none}}@media (max-width:768px){.footer-main{gap:30px;grid-template-columns:1fr;padding:40px 20px 30px}.footer-brand{text-align:center}.footer-contact{align-items:center}.contact-item{justify-content:center}.footer-bottom-content{flex-direction:column;gap:15px;text-align:center}.footer-bottom-right{flex-direction:column;gap:10px}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:#f8f9fa;background:var(--bg-secondary)}::-webkit-scrollbar-thumb{background:#adb5bd;background:var(--text-muted);border-radius:4px}::-webkit-scrollbar-thumb:hover{background:#6c757d;background:var(--text-secondary)}.tab-navigation{background-color:var(--bg-secondary);border-bottom:2px solid var(--border-color);margin-bottom:30px;position:sticky;top:88px;z-index:90}.tab-list{-webkit-overflow-scrolling:touch;display:flex;gap:5px;margin:0 auto;max-width:1200px;overflow-x:auto;padding:0 20px}.tab-button{align-items:center;background:transparent;border:none;border-bottom:3px solid transparent;color:var(--text-secondary);cursor:pointer;display:flex;font-size:15px;font-weight:500;gap:8px;padding:15px 25px;position:relative;transition:all .2s ease;white-space:nowrap}.tab-button:hover{background-color:var(--bg-tertiary);color:var(--accent-color)}.tab-button.active{border-bottom-color:var(--accent-color);color:var(--accent-color)}.tab-icon{align-items:center;display:flex;font-size:18px}.tab-label{font-family:inherit}@media (max-width:768px){.tab-navigation{top:76px}.tab-list{padding:0 10px}.tab-button{font-size:14px;padding:12px 18px}.tab-icon{font-size:16px}}.smart-repair-panel{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,sans-serif;margin:20px 0}.smart-repair-panel .section-title{align-items:center;color:#1a1a1a;display:flex;font-size:1.2rem;font-weight:600;gap:8px;margin-bottom:15px}.smart-repair-panel.dark .section-title{color:#e0e0e0}.smart-repair-panel .icon{font-size:1.3rem}.error-analysis-section{background:#fff;border:2px solid #f0f0f0;border-radius:12px;box-shadow:0 2px 8px rgba(0,0,0,.05);margin-bottom:20px;padding:20px}.smart-repair-panel.dark .error-analysis-section{background:#2a2a2a;border-color:#404040}.error-count{background:#fff3cd;border-left:4px solid #ffc107;border-radius:8px;color:#856404;font-size:.95rem;margin-bottom:15px;padding:10px 15px}.smart-repair-panel.dark .error-count{background:#3a3000;color:#ffd54f}.errors-list{display:flex;flex-direction:column;gap:12px}.error-item{background:#f8f9fa;border-left:4px solid #dc3545;border-radius:8px;padding:15px;transition:transform .2s,box-shadow .2s}.error-item:hover{box-shadow:0 2px 8px rgba(0,0,0,.1);transform:translateX(4px)}.smart-repair-panel.dark .error-item{background:#333;border-left-color:#ff5252}.error-item.warning{border-left-color:#ffc107}.error-item.critical{background:#fff5f5;border-left-color:#dc3545}.smart-repair-panel.dark .error-item.critical{background:#3d1f1f}.error-header{align-items:center;display:flex;flex-wrap:wrap;gap:10px;margin-bottom:8px}.error-icon{font-size:1.1rem}.error-location{color:#495057;font-size:.9rem;font-weight:600}.smart-repair-panel.dark .error-location{color:#adb5bd}.error-type{background:#e9ecef;border-radius:12px;color:#495057;font-size:.85rem;font-weight:500;padding:2px 10px;text-transform:capitalize}.smart-repair-panel.dark .error-type{background:#495057;color:#e9ecef}.error-message{color:#212529;font-weight:500;margin-bottom:8px}.smart-repair-panel.dark .error-message{color:#e0e0e0}.error-explanation{align-items:start;background:#e7f3ff;border-radius:6px;color:#004085;display:flex;font-size:.9rem;gap:8px;margin-top:8px;padding:10px}.smart-repair-panel.dark .error-explanation{background:#1a2f3d;color:#81d4fa}.explanation-icon{flex-shrink:0}.error-snippet{background:#f8f9fa;border:1px solid #dee2e6;border-radius:6px;margin-top:8px;overflow-x:auto;padding:8px 12px}.smart-repair-panel.dark .error-snippet{background:#1e1e1e;border-color:#444}.error-snippet code{color:#d63384;font-family:Courier New,Courier,monospace;font-size:.9rem}.smart-repair-panel.dark .error-snippet code{color:#ff79c6}.patterns-detected{border-top:1px solid #dee2e6;margin-top:20px;padding-top:15px}.smart-repair-panel.dark .patterns-detected{border-top-color:#444}.patterns-detected h4{color:#495057;font-size:1rem;margin-bottom:10px}.smart-repair-panel.dark .patterns-detected h4{color:#adb5bd}.patterns-detected ul{list-style:none;margin:0;padding:0}.patterns-detected li{color:#6c757d;padding:6px 0}.smart-repair-panel.dark .patterns-detected li{color:#9e9e9e}.repair-options-section{background:#fff;border:2px solid #f0f0f0;border-radius:12px;box-shadow:0 2px 8px rgba(0,0,0,.05);padding:20px}.smart-repair-panel.dark .repair-options-section{background:#2a2a2a;border-color:#404040}.options-hint{color:#6c757d;font-size:.95rem;margin-bottom:15px}.smart-repair-panel.dark .options-hint{color:#9e9e9e}.options-list{display:flex;flex-direction:column;gap:15px}.repair-option{background:#f8f9fa;border:2px solid #dee2e6;border-radius:12px;cursor:pointer;padding:18px;position:relative;transition:all .3s ease}.repair-option:hover{border-color:#0d6efd;box-shadow:0 4px 12px rgba(13,110,253,.15);transform:translateY(-2px)}.smart-repair-panel.dark .repair-option{background:#333;border-color:#555}.smart-repair-panel.dark .repair-option:hover{border-color:#42a5f5}.repair-option.recommended{background:#f1f9f4;border-color:#28a745}.smart-repair-panel.dark .repair-option.recommended{background:#1b2e1f;border-color:#4caf50}.repair-option.recommended:hover{border-color:#28a745;box-shadow:0 4px 12px rgba(40,167,69,.25)}.option-header{align-items:start;display:flex;gap:15px;justify-content:space-between;margin-bottom:12px}.option-title{display:flex;flex:1 1;flex-direction:column;gap:6px}.option-title strong{color:#212529;font-size:1.1rem}.smart-repair-panel.dark .option-title strong{color:#e0e0e0}.recommended-badge{background:linear-gradient(135deg,#28a745,#20c997);border-radius:20px;box-shadow:0 2px 6px rgba(40,167,69,.3);color:#fff;display:inline-block;font-size:.85rem;font-weight:600;padding:4px 12px}.confidence-badge{align-items:center;background:#0d6efd;border-radius:10px;color:#fff;display:flex;flex-direction:column;min-width:70px;padding:8px 15px}.smart-repair-panel.dark .confidence-badge{background:#1976d2}.confidence-value{font-size:1.3rem;font-weight:700;line-height:1}.confidence-label{font-size:.7rem;margin-top:2px;opacity:.9;text-transform:uppercase}.option-description{color:#495057;font-size:.95rem;margin-bottom:10px}.smart-repair-panel.dark .option-description{color:#b0b0b0}.option-reason{align-items:center;background:#e7f3ff;border-radius:6px;color:#004085;display:flex;font-size:.9rem;gap:8px;margin-bottom:10px;padding:8px 12px}.smart-repair-panel.dark .option-reason{background:#1a2f3d;color:#81d4fa}.reason-icon{flex-shrink:0}.option-changes{color:#6c757d;font-size:.9rem;margin-bottom:10px}.smart-repair-panel.dark .option-changes{color:#9e9e9e}.changes-details{border-top:1px solid #dee2e6;margin-top:10px;padding-top:10px}.smart-repair-panel.dark .changes-details{border-top-color:#444}.changes-details summary{color:#0d6efd;cursor:pointer;font-size:.9rem;padding:5px 0;-webkit-user-select:none;user-select:none}.smart-repair-panel.dark .changes-details summary{color:#42a5f5}.changes-details summary:hover{text-decoration:underline}.changes-list{list-style:none;margin:0;padding:10px 0 0}.changes-list li{align-items:center;display:flex;font-size:.85rem;gap:8px;padding:4px 0}.change-type{border-radius:50%;display:inline-block;flex-shrink:0;font-size:.9rem;font-weight:700;height:20px;line-height:20px;text-align:center;width:20px}.change-added .change-type{background:#d4edda;color:#155724}.smart-repair-panel.dark .change-added .change-type{background:#1b4332;color:#69db7c}.change-removed .change-type{background:#f8d7da;color:#721c24}.smart-repair-panel.dark .change-removed .change-type{background:#4a1f1f;color:#ff6b6b}.changes-more{color:#6c757d;font-style:italic;margin-top:5px}.smart-repair-panel.dark .changes-more{color:#9e9e9e}.apply-button{background:linear-gradient(135deg,#0d6efd,#0056b3);border:none;border-radius:8px;box-shadow:0 2px 6px rgba(13,110,253,.3);color:#fff;cursor:pointer;font-size:1rem;font-weight:600;margin-top:15px;padding:12px 20px;transition:all .3s ease;width:100%}.apply-button:hover:not(:disabled){background:linear-gradient(135deg,#0056b3,#004085);box-shadow:0 4px 12px rgba(13,110,253,.4);transform:translateY(-2px)}.apply-button:disabled{background:#6c757d;cursor:not-allowed;opacity:.6}.repair-option.recommended .apply-button{background:linear-gradient(135deg,#28a745,#20c997)}.repair-option.recommended .apply-button:hover:not(:disabled){background:linear-gradient(135deg,#20c997,#17a2b8)}@media (max-width:768px){.option-header{flex-direction:column}.confidence-badge{align-self:flex-start}.smart-repair-panel .section-title{font-size:1.1rem}}.repair-history{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,sans-serif;margin:15px 0}.history-controls{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:15px}.history-button{align-items:center;background:#fff;border:2px solid #dee2e6;border-radius:8px;color:#495057;cursor:pointer;display:flex;font-size:.95rem;font-weight:600;gap:8px;padding:10px 18px;transition:all .3s ease}.repair-history.dark .history-button{background:#2a2a2a;border-color:#444;color:#e0e0e0}.history-button:hover:not(:disabled){background:#0d6efd;border-color:#0d6efd;box-shadow:0 4px 8px rgba(13,110,253,.3);color:#fff;transform:translateY(-2px)}.repair-history.dark .history-button:hover:not(:disabled){background:#1976d2;border-color:#1976d2}.history-button:disabled{background:#f8f9fa;border-color:#dee2e6;color:#6c757d;cursor:not-allowed;opacity:.4}.repair-history.dark .history-button:disabled{background:#1a1a1a;border-color:#333;color:#666}.button-icon{font-size:1.3rem;line-height:1}.button-text{font-size:.9rem}.history-details{background:#fff;border:2px solid #f0f0f0;border-radius:12px;margin-top:15px;padding:15px}.repair-history.dark .history-details{background:#2a2a2a;border-color:#404040}.history-details summary{align-items:center;color:#495057;cursor:pointer;display:flex;font-weight:600;gap:8px;list-style:none;padding:5px;-webkit-user-select:none;user-select:none}.repair-history.dark .history-details summary{color:#e0e0e0}.history-details summary::-webkit-details-marker{display:none}.history-details summary:hover{color:#0d6efd}.repair-history.dark .history-details summary:hover{color:#42a5f5}.history-details[open] summary{border-bottom:1px solid #dee2e6;margin-bottom:15px;padding-bottom:10px}.repair-history.dark .history-details[open] summary{border-bottom-color:#444}.history-timeline{padding-left:30px;position:relative}.history-timeline:before{background:linear-gradient(180deg,#0d6efd,#dee2e6);bottom:10px;content:"";left:9px;position:absolute;top:10px;width:2px}.repair-history.dark .history-timeline:before{background:linear-gradient(180deg,#1976d2,#444)}.history-entry{margin-bottom:15px;padding-bottom:15px;position:relative}.history-entry:last-child{margin-bottom:0;padding-bottom:0}.entry-marker{align-items:center;color:#dee2e6;display:flex;font-size:1.2rem;height:20px;justify-content:center;left:-30px;position:absolute;top:0;width:20px}.history-entry.current .entry-marker{animation:pulse 2s ease-in-out infinite;color:#0d6efd;font-size:1.4rem}.repair-history.dark .history-entry.current .entry-marker{color:#42a5f5}@keyframes pulse{0%,to{opacity:1}50%{opacity:.6}}.entry-content{background:#f8f9fa;border-radius:8px;padding:12px;transition:all .2s ease}.repair-history.dark .entry-content{background:#333}.history-entry.current .entry-content{background:#e7f3ff;border:2px solid #0d6efd}.repair-history.dark .history-entry.current .entry-content{background:#1a2f3d;border-color:#1976d2}.entry-content:hover{transform:translateX(4px)}.entry-header{align-items:center;display:flex;flex-wrap:wrap;gap:8px;justify-content:space-between;margin-bottom:6px}.entry-action{color:#212529;font-size:.95rem;font-weight:600}.repair-history.dark .entry-action{color:#e0e0e0}.entry-time{color:#6c757d;font-size:.85rem}.repair-history.dark .entry-time{color:#9e9e9e}.entry-description{color:#495057;font-size:.9rem;margin-bottom:4px}.repair-history.dark .entry-description{color:#b0b0b0}.entry-changes{color:#6c757d;font-size:.85rem;font-style:italic}.repair-history.dark .entry-changes{color:#9e9e9e}@media (max-width:768px){.history-controls{width:100%}.history-button{flex:1 1;justify-content:center}.button-text{display:none}.button-icon{font-size:1.5rem}}
/*# sourceMappingURL=main.d8daf047.css.map*/