@import"https://cdn.jsdelivr.net/npm/katex@0.16.11/dist/katex.min.css";.sidebar{width:280px;height:100vh;background-color:#1a1a1a;color:#fff;position:fixed;left:0;top:0;overflow-y:auto;-webkit-overflow-scrolling:touch;transition:all .3s ease}.sidebar-container{padding:1.5rem}.sidebar-brand{padding:1rem 0;margin-bottom:2rem;border-bottom:1px solid #333}.brand-logo{font-size:1.5rem;font-weight:700;color:#4caf50;margin-bottom:.5rem}.brand-text{font-size:.9rem;color:#888}.projects-list{display:flex;flex-direction:column;gap:.5rem}.project-item{display:flex;align-items:center;padding:1rem;border-radius:8px;cursor:pointer;transition:all .2s ease;background-color:#222;-webkit-tap-highlight-color:transparent;min-height:60px}.project-item:hover{background-color:#2a2a2a}.project-item.active{background-color:#4caf50}.project-icon{font-size:1.5rem;margin-right:1rem;width:2rem;text-align:center}.project-info{flex:1}.project-name{font-weight:500;margin-bottom:.25rem}.project-description{font-size:.8rem;color:#888}.project-item.active .project-description{color:#fff}.pages-list{display:flex;flex-direction:column;gap:.5rem}.page-item{display:flex;align-items:center;padding:1rem;border-radius:8px;cursor:pointer;transition:all .2s ease;background-color:#222;-webkit-tap-highlight-color:transparent;min-height:60px}.page-item:hover{background-color:#2a2a2a}.page-item.active{background-color:#4caf50}.page-icon{font-size:1.5rem;margin-right:1rem;width:2rem;text-align:center}.page-name{font-weight:500}.page-item.active .page-name{color:#fff}@media (max-width: 768px){.sidebar{width:280px;transform:translate(-100%);z-index:200;box-shadow:2px 0 10px #0000004d}.sidebar.open{transform:translate(0)}.page-item,.project-item{padding:1.25rem;min-height:60px}.page-icon,.project-icon{font-size:1.75rem;margin-right:1.25rem}.page-name,.project-name{font-size:1rem}}@media (max-width: 480px){.sidebar{width:260px}.sidebar-container{padding:1rem}.brand-logo{font-size:1.25rem}.brand-text{font-size:.8rem}}.sidebar::-webkit-scrollbar{width:6px}.sidebar::-webkit-scrollbar-track{background:#1a1a1a}.sidebar::-webkit-scrollbar-thumb{background:#333;border-radius:3px}.sidebar::-webkit-scrollbar-thumb:hover{background:#444}.topbar{position:fixed;top:0;right:0;left:var(--sidebar-width);height:60px;background-color:#fff;box-shadow:0 2px 4px #0000001a;z-index:100}.topbar-container{display:flex;justify-content:space-between;align-items:center;height:100%;padding:0 2rem}.topbar-left{display:flex;align-items:center;gap:1rem}.page-title{font-size:1.25rem;font-weight:600;color:var(--text-color)}.topbar-right{display:flex;align-items:center;gap:1rem}.user-info{display:flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:4px;background-color:var(--background-color);color:var(--text-color);font-weight:500}.user-icon{font-size:1.25rem}.user-name{font-size:.9rem}.sign-out-btn{display:flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border:none;border-radius:4px;background-color:transparent;color:var(--text-color);cursor:pointer;transition:background-color .2s ease}.sign-out-btn:hover{background-color:var(--background-color)}.sign-out-icon{font-size:1.25rem}.hamburger-btn{display:none;align-items:center;justify-content:center;width:40px;height:40px;border:none;border-radius:6px;background-color:transparent;color:var(--text-color);cursor:pointer;transition:background-color .2s ease;padding:0}.hamburger-btn:hover{background-color:var(--background-color)}.hamburger-icon{font-size:1.5rem;line-height:1}@media (max-width: 768px){.hamburger-btn{display:flex}.topbar{left:0}.topbar-container{padding:0 1rem}.topbar-right{gap:.5rem}.user-info{padding:.5rem;min-width:auto}.sign-out-btn{padding:.5rem}.sign-out-text{display:none}}@media (max-width: 480px){.topbar-container{padding:0 .75rem}.page-title{font-size:1.1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:150px}.user-info,.sign-out-btn{padding:.25rem .5rem}}.tic-tac-toe-game .game-container{display:flex;flex-direction:column;align-items:center;gap:1.5rem}.tic-tac-toe-game .game-info{text-align:center;margin-bottom:1rem}.tic-tac-toe-game .current-player{font-size:1.2rem;font-weight:500;color:#2c3e50;margin-bottom:.5rem}.tic-tac-toe-game .current-player span{color:#3498db;font-weight:600}.tic-tac-toe-game .game-status{font-size:1.1rem;color:#666;font-weight:500}.tic-tac-toe-board{display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);gap:4px;background-color:#34495e;padding:4px;border-radius:8px;box-shadow:0 4px 15px #0003}.tic-tac-toe-game .cell{width:80px;height:80px;background-color:#fff;border:none;border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:2rem;font-weight:700;cursor:pointer;transition:all .2s ease;-webkit-user-select:none;user-select:none}.tic-tac-toe-game .cell:hover{background-color:#f8f9fa;transform:scale(1.05)}.tic-tac-toe-game .cell.x{color:#e74c3c}.tic-tac-toe-game .cell.o{color:#3498db}.tic-tac-toe-game .game-controls{margin-top:1rem}.tic-tac-toe-game .reset-btn{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;border:none;padding:12px 24px;border-radius:6px;font-size:1rem;font-weight:500;cursor:pointer;transition:all .3s ease;box-shadow:0 2px 8px #667eea4d}.tic-tac-toe-game .reset-btn:hover{transform:translateY(-2px);box-shadow:0 4px 15px #667eea66}.tic-tac-toe-game .reset-btn:active{transform:translateY(0)}@media (max-width: 768px){.tic-tac-toe-game .cell{width:60px;height:60px;font-size:1.5rem}.tic-tac-toe-game .game-info{margin-bottom:.5rem}.tic-tac-toe-game .current-player,.tic-tac-toe-game .game-status{font-size:1rem}}@media (max-width: 480px){.tic-tac-toe-game .cell{width:50px;height:50px;font-size:1.3rem}.tic-tac-toe-board{gap:3px;padding:3px}.tic-tac-toe-game .reset-btn{padding:10px 20px;font-size:.9rem}}.project-container{padding:2rem;max-width:1200px;margin:0 auto}.project-content h1{color:#333;margin-bottom:2rem;font-size:2.5rem;font-weight:600}.project-section,.games-section{background:#fff;border-radius:12px;padding:2rem;margin-bottom:2rem;box-shadow:0 2px 10px #0000001a;border:1px solid #e0e0e0}.project-section h2,.games-section h2{color:#2c3e50;margin-bottom:1.5rem;font-size:1.8rem;font-weight:500}.games-section p{color:#666;margin-bottom:2rem;font-size:1.1rem}.games-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}.game-card{background:#fff;border-radius:12px;padding:1.5rem;border:1px solid #e9ecef;transition:all .3s ease;box-shadow:0 2px 8px #0000001a}.game-card:hover{box-shadow:0 8px 25px #00000026;transform:translateY(-4px)}.game-card-content h3{color:#2c3e50;font-size:1.5rem;font-weight:600;margin-bottom:.75rem}.game-card-content p{color:#666;font-size:1rem;margin-bottom:1.5rem;line-height:1.5}.game-card-actions{display:flex;justify-content:center}.play-btn{padding:.75rem 2rem;border:none;border-radius:8px;font-weight:500;cursor:pointer;transition:all .3s ease;background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;font-size:1rem}.play-btn:hover{background:linear-gradient(135deg,#5a6fd8,#6a4190);transform:translateY(-2px);box-shadow:0 4px 12px #667eea66}.game-wrapper{background:#f8f9fa;border-radius:8px;padding:1.5rem;border:1px solid #e9ecef;transition:all .3s ease}.game-wrapper:hover{box-shadow:0 4px 15px #0000001a;transform:translateY(-2px)}.game-header{margin-bottom:1.5rem;text-align:center}.game-header h3{color:#2c3e50;font-size:1.5rem;font-weight:600;margin-bottom:.5rem}.game-header p{color:#666;font-size:1rem;margin:0}.single-game-view{max-width:800px;margin:0 auto}.game-header-nav{display:flex;align-items:center;margin-bottom:2rem;gap:1rem}.back-btn{background:#6c757d;color:#fff;border:none;padding:.75rem 1rem;border-radius:8px;cursor:pointer;font-weight:500;transition:all .3s ease;display:flex;align-items:center;gap:.5rem}.back-btn:hover{background:#5a6268;transform:translateY(-1px)}.single-game-container{background:#fff;border-radius:12px;padding:2rem;box-shadow:0 4px 20px #0000001a;border:1px solid #e0e0e0}.coming-soon{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin-top:1rem}.coming-soon-item{background:linear-gradient(135deg,#f093fb,#f5576c);color:#fff;padding:1rem;border-radius:8px;text-align:center;font-weight:500;box-shadow:0 2px 8px #f093fb4d;transition:all .3s ease}.coming-soon-item:hover{transform:translateY(-2px);box-shadow:0 4px 15px #f093fb66}@media (max-width: 768px){.project-container{padding:1rem}.project-content h1{font-size:2rem;margin-bottom:1.5rem}.project-section,.games-section{padding:1.5rem;margin-bottom:1.5rem}.project-section h2,.games-section h2{font-size:1.5rem;margin-bottom:1rem}.game-wrapper{padding:1rem}.games-grid{grid-template-columns:1fr;gap:1.5rem}.play-btn{padding:.75rem 1.5rem}.game-header-nav{flex-direction:column;align-items:flex-start;gap:1rem}.single-game-container{padding:1.5rem}.coming-soon{grid-template-columns:1fr}}@media (max-width: 480px){.project-container{padding:.5rem}.project-section,.games-section{padding:1rem;border-radius:8px}.game-wrapper{padding:.75rem}.game-card,.single-game-container{padding:1rem}.back-btn{padding:.5rem .75rem;font-size:.9rem}}.chat-page{display:flex;flex-direction:column;height:100vh;max-height:100vh;background-color:#f8f9fa}.chat-header{padding:20px 24px 16px;background:#fff;border-bottom:1px solid #e5e7eb;flex-shrink:0}.chat-header h1{margin:0 0 4px;font-size:24px;font-weight:600;color:#1f2937}.chat-header p{margin:0 0 8px;font-size:14px;color:#6b7280}.model-info{display:flex;align-items:center;gap:8px;margin-top:8px;padding:6px 12px;background:#f3f4f6;border-radius:12px;border:1px solid #e5e7eb;max-width:fit-content}.model-label{font-size:12px;font-weight:500;color:#6b7280;text-transform:uppercase;letter-spacing:.05em}.model-name{font-size:13px;font-weight:600;color:#374151;font-family:SF Mono,Monaco,Consolas,monospace}.messages-container{flex:1;overflow-y:auto;padding:20px 24px;display:flex;flex-direction:column;gap:16px;scroll-behavior:smooth}.message{display:flex;flex-direction:column;max-width:100%}.message-content{display:flex;align-items:flex-start;gap:8px}.user-message .message-content{justify-content:flex-end}.assistant-message .message-content{justify-content:flex-start}.message-bubble{border-radius:18px;padding:12px 16px;max-width:70%;word-wrap:break-word;position:relative}.user-bubble{background:#007bff;color:#fff;border-bottom-right-radius:4px;margin-left:auto}.assistant-bubble{background:#fff;color:#1f2937;border:1px solid #e5e7eb;border-bottom-left-radius:4px;display:flex;gap:12px;align-items:flex-start;max-width:calc(70% - 40px)}.assistant-avatar{font-size:20px;flex-shrink:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;background:#f3f4f6;border-radius:50%;margin-top:2px}.message-body{flex:1;min-width:0}.message-text{font-size:14px;line-height:1.5;margin-bottom:4px}.message-text h1,.message-text h2,.message-text h3,.message-text h4,.message-text h5,.message-text h6{margin:16px 0 8px;font-weight:600;line-height:1.25;color:#1f2937}.message-text h1{font-size:1.5em;border-bottom:2px solid #e5e7eb;padding-bottom:8px}.message-text h2{font-size:1.3em;border-bottom:1px solid #e5e7eb;padding-bottom:6px}.message-text h3{font-size:1.2em}.message-text h4{font-size:1.1em}.message-text h5,.message-text h6{font-size:1em;color:#6b7280}.message-text hr{border:none;border-top:2px solid #e5e7eb;margin:20px 0;background:none}.message-text ul,.message-text ol{margin:8px 0;padding-left:20px}.message-text li{margin:4px 0;line-height:1.5}.message-text ul ul,.message-text ol ol,.message-text ul ol,.message-text ol ul{margin:2px 0}.table-wrapper{overflow-x:auto;margin:12px 0;border-radius:8px;border:1px solid #e5e7eb}.markdown-table{width:100%;border-collapse:collapse;background:#fff;font-size:14px}.markdown-table th,.markdown-table td{border:1px solid #e5e7eb;padding:8px 12px;text-align:left;vertical-align:top}.markdown-table th{background:#f8f9fa;font-weight:600;color:#374151}.markdown-table tr:nth-child(2n){background:#f9fafb}.markdown-table tr:hover{background:#f3f4f6}.message-text pre,.message-text .code-block{background:#f8f9fa;border:1px solid #e5e7eb;border-radius:8px;padding:16px;margin:12px 0;overflow-x:auto;font-family:SF Mono,Monaco,Consolas,Courier New,monospace;font-size:13px;line-height:1.4;position:relative}.message-text pre code,.message-text .code-block code{background:none;color:inherit;padding:0;border:none;font-size:inherit}.message-text code{background:#f1f5f9;color:#dc2626;padding:2px 5px;border-radius:4px;font-family:SF Mono,Monaco,Consolas,Courier New,monospace;font-size:13px;border:1px solid #e2e8f0}.markdown-blockquote{margin:12px 0;padding:12px 16px;border-left:4px solid #3b82f6;background:#f8fafc;border-radius:0 6px 6px 0;font-style:italic;color:#475569}.markdown-blockquote p{margin:0}.message-text p{margin:8px 0;line-height:1.6}.message-text p:first-child{margin-top:0}.message-text p:last-child{margin-bottom:0}.message-text a{color:#3b82f6;text-decoration:underline;text-decoration-color:#3b82f64d;transition:all .2s ease}.message-text a:hover{color:#1d4ed8;text-decoration-color:currentColor}.math-display{margin:16px 0;text-align:center;overflow-x:auto;padding:8px}.math-inline{display:inline;margin:0 2px}.math-error{color:#dc2626;background:#fef2f2;padding:4px 8px;border-radius:4px;border:1px solid #fecaca;font-family:monospace;font-size:12px}.message-text .katex{font-size:1.1em}.message-text .katex-display{margin:16px 0}.message-text>*:first-child{margin-top:0}.message-text>*:last-child{margin-bottom:0}@media (max-width: 768px){.table-wrapper{margin:8px -8px;border-radius:0;border-left:none;border-right:none}.markdown-table{font-size:13px}.markdown-table th,.markdown-table td{padding:6px 8px}}.message-time{font-size:11px;color:#9ca3af;opacity:.7}.user-bubble .message-time{color:#fffc}.input-container{flex-shrink:0;padding:16px 24px 24px;background:#fff;border-top:1px solid #e5e7eb}.input-wrapper{display:flex;align-items:flex-end;gap:8px;max-width:800px;margin:0 auto;background:#fff;border:1px solid #d1d5db;border-radius:22px;padding:8px 12px;transition:border-color .2s ease}.input-wrapper:focus-within{border-color:#007bff;box-shadow:0 0 0 3px #007bff1a}.message-input{flex:1;border:none;outline:none;resize:none;font-size:14px;line-height:1.5;padding:8px 4px;background:transparent;color:#1f2937;font-family:inherit;min-height:20px;max-height:120px}.message-input::placeholder{color:#9ca3af}.message-input:disabled{opacity:.6;cursor:not-allowed}.send-button{background:#007bff;border:none;border-radius:50%;width:36px;height:36px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .2s ease;font-size:16px;color:#fff;flex-shrink:0}.send-button:hover:not(:disabled){background:#0056b3;transform:scale(1.05)}.send-button:disabled,.send-button.disabled{background:#e5e7eb;color:#9ca3af;cursor:not-allowed;transform:none}.send-button.loading{animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.typing-indicator .message-bubble{padding:16px 20px}.typing-animation{display:flex;gap:4px;align-items:center}.typing-animation span{width:6px;height:6px;background:#9ca3af;border-radius:50%;animation:typing 1.4s infinite ease-in-out}.typing-animation span:nth-child(1){animation-delay:0s}.typing-animation span:nth-child(2){animation-delay:.2s}.typing-animation span:nth-child(3){animation-delay:.4s}@keyframes typing{0%,60%,to{transform:translateY(0);opacity:.4}30%{transform:translateY(-10px);opacity:1}}.messages-container::-webkit-scrollbar{width:6px}.messages-container::-webkit-scrollbar-track{background:transparent}.messages-container::-webkit-scrollbar-thumb{background:#d1d5db;border-radius:3px}.messages-container::-webkit-scrollbar-thumb:hover{background:#9ca3af}@media (max-width: 768px){.chat-header{padding:16px 16px 12px}.messages-container{padding:16px;gap:12px}.input-container{padding:12px 16px 16px}.message-bubble{max-width:85%}.assistant-bubble{max-width:calc(85% - 40px)}.chat-header h1{font-size:20px}.model-info{padding:4px 8px;margin-top:6px}.model-label{font-size:11px}.model-name{font-size:12px}}.stream-toggle-container{display:flex;align-items:center;background:#f8f9fa;border:1px solid #dee2e6;border-radius:8px;padding:8px 12px;margin-left:16px}.stream-toggle-label{display:flex;align-items:center;gap:8px;font-size:14px;font-weight:500;color:#374151;cursor:pointer;-webkit-user-select:none;user-select:none}.stream-toggle-label input[type=checkbox]{display:none}.toggle-slider{position:relative;width:44px;height:24px;background-color:#cbd5e1;border-radius:12px;transition:background-color .3s ease}.toggle-slider:before{content:"";position:absolute;top:2px;left:2px;width:20px;height:20px;background-color:#fff;border-radius:50%;transition:transform .3s ease;box-shadow:0 2px 4px #0000001a}input:checked+.toggle-slider{background-color:#3b82f6}input:checked+.toggle-slider:before{transform:translate(20px)}.toggle-text{font-size:13px;font-weight:500}.streaming-message{animation:pulse 1.5s ease-in-out infinite}.streaming-text{position:relative}.streaming-cursor{display:inline-block;color:#3b82f6;font-weight:700;animation:blink 1s infinite;margin-left:2px}@keyframes blink{0%,50%{opacity:1}51%,to{opacity:0}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.8}}.chat-header{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;background:#fff;border-bottom:1px solid #e5e7eb;box-shadow:0 1px 3px #0000001a}.model-info{display:flex;align-items:center;gap:8px;background:#f8f9fa;border:1px solid #dee2e6;border-radius:8px;padding:8px 12px}.controls-container{display:flex;align-items:center;gap:12px}.export-button{display:flex;align-items:center;gap:6px;background:#3b82f6;color:#fff;border:none;border-radius:8px;padding:8px 12px;font-size:14px;font-weight:500;cursor:pointer;transition:all .2s ease;box-shadow:0 2px 4px #3b82f633}.export-button:hover{background:#2563eb;transform:translateY(-1px);box-shadow:0 4px 8px #3b82f64d}.export-button:active{transform:translateY(0);box-shadow:0 2px 4px #3b82f633}@media (prefers-color-scheme: dark){.chat-page{background-color:#111827}.chat-header{background:#1f2937;border-bottom-color:#374151}.chat-header h1{color:#f9fafb}.chat-header p{color:#d1d5db}.assistant-bubble{background:#1f2937;color:#f9fafb;border-color:#374151}.assistant-avatar{background:#374151}.input-container{background:#1f2937;border-top-color:#374151}.input-wrapper{background:#1f2937;border-color:#4b5563}.input-wrapper:focus-within{border-color:#007bff}.message-input{color:#f9fafb}.message-input::placeholder{color:#9ca3af}.message-text pre,.message-text .code-block{background:#111827;border-color:#374151;color:#f9fafb}.message-text code{background:#374151;color:#fbbf24;border-color:#4b5563}.message-text h1,.message-text h2,.message-text h3,.message-text h4,.message-text h5,.message-text h6{color:#f9fafb}.message-text h1,.message-text h2{border-bottom-color:#4b5563}.message-text hr{border-top-color:#4b5563}.markdown-table{background:#1f2937;color:#f9fafb}.markdown-table th{background:#374151;color:#f3f4f6}.markdown-table th,.markdown-table td{border-color:#4b5563}.markdown-table tr:nth-child(2n){background:#374151}.markdown-table tr:hover{background:#4b5563}.table-wrapper{border-color:#4b5563}.markdown-blockquote{background:#374151;border-left-color:#3b82f6;color:#d1d5db}.message-text a{color:#60a5fa}.message-text a:hover{color:#93c5fd}.math-error{background:#422928;border-color:#7c2d12;color:#fca5a5}.model-info{background:#374151;border-color:#4b5563}.model-label{color:#9ca3af}.model-name{color:#f3f4f6}.stream-toggle-container{background:#374151;border-color:#4b5563}.stream-toggle-label{color:#f3f4f6}.toggle-slider{background-color:#4b5563}.toggle-slider:before{background-color:#9ca3af}input:checked+.toggle-slider{background-color:#3b82f6}input:checked+.toggle-slider:before{background-color:#fff}.streaming-cursor{color:#3b82f6}.export-button{background:#3b82f6;color:#fff;border-color:#3b82f6}.export-button:hover{background:#2563eb;border-color:#2563eb}}*{margin:0;padding:0;box-sizing:border-box}:root{--text-color: #333;--background-color: #f8f9fa;--sidebar-width: 280px}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;line-height:1.6;color:#333;background-color:#f5f5f5;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#app{min-height:100vh;background-color:#fff;box-shadow:0 0 10px #0000001a}#main-content{margin-left:var(--sidebar-width);margin-top:60px;min-height:calc(100vh - 60px);transition:margin-left .3s ease;overflow-x:auto;-webkit-overflow-scrolling:touch}.header{padding:1rem 2rem;background-color:#fff;border-bottom:1px solid #eee;display:flex;justify-content:space-between;align-items:center}button{padding:.5rem 1rem;border:none;border-radius:4px;background-color:#4caf50;color:#fff;cursor:pointer;transition:all .2s ease;font-size:1rem;min-height:44px;display:inline-flex;align-items:center;justify-content:center;-webkit-tap-highlight-color:transparent}button:hover{background-color:#45a049;transform:translateY(-1px);box-shadow:0 2px 4px #0000001a}button:active{transform:translateY(0);box-shadow:0 1px 2px #0000001a}@media (hover: none) and (pointer: coarse){button:hover{transform:none;box-shadow:none;background-color:#4caf50}button:active{background-color:#45a049;transform:scale(.98)}}#greeting{font-size:2rem;margin-bottom:1rem;color:#333}.sidebar-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#00000080;z-index:199;opacity:0;visibility:hidden;transition:all .3s ease}.sidebar-overlay.active{opacity:1;visibility:visible}@media (max-width: 1024px){:root{--sidebar-width: 260px}}@media (max-width: 768px){:root{--sidebar-width: 0px}#main-content{margin-left:0;padding:1rem}.header{padding:1rem}.user-name{display:none}}@media (max-width: 480px){#main-content,.header{padding:.5rem}.topbar-container{padding:0 1rem}.page-title{font-size:1.1rem}}*{touch-action:manipulation}@media (pointer: coarse){input,select,textarea,button{font-size:16px}}
