.command-palette-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.6);backdrop-filter:blur(4px);z-index:9999;display:flex;align-items:flex-start;justify-content:center;padding-top:15vh;animation:fadeIn .15s ease-out}.command-palette-container{width:100%;max-width:640px;margin:0 16px;animation:slideDown .2s ease-out}.command-palette{background:white;border-radius:16px;box-shadow:0 25px 50px -12px rgba(0,0,0,.25);overflow:hidden;border:1px solid rgba(0,0,0,.05)}.command-palette-header{display:flex;align-items:center;border-bottom:1px solid #e5e7eb;padding:12px 16px;gap:12px}.command-palette-search-icon{width:20px;height:20px;color:#6b7280;flex-shrink:0}.command-palette-input{flex:1;border:none;outline:none;font-size:15px;font-weight:500;color:#111827;background:transparent}.command-palette-input::-moz-placeholder{color:#9ca3af}.command-palette-input::placeholder{color:#9ca3af}.command-palette-shortcut-hint{display:flex;gap:4px}.command-palette-shortcut-hint kbd{padding:4px 8px;background:#f3f4f6;border-radius:6px;font-size:12px;font-weight:600;color:#6b7280;border:1px solid #e5e7eb}.command-palette-list{max-height:400px;overflow-y:auto;padding:8px}.command-palette-list::-webkit-scrollbar{width:8px}.command-palette-list::-webkit-scrollbar-track{background:transparent}.command-palette-list::-webkit-scrollbar-thumb{background:#d1d5db;border-radius:4px}.command-palette-list::-webkit-scrollbar-thumb:hover{background:#9ca3af}.command-palette-group{margin-bottom:8px}.command-palette-group [cmdk-group-heading]{padding:8px 12px;font-size:11px;font-weight:700;color:#6b7280;text-transform:uppercase;letter-spacing:.5px}.command-palette-item{display:flex;align-items:center;justify-content:space-between;padding:10px 12px;border-radius:8px;cursor:pointer;transition:all .15s ease;margin-bottom:2px}.command-palette-item:hover,.command-palette-item[aria-selected=true]{background:linear-gradient(135deg,#667eea,#764ba2)}.command-palette-item:hover .command-palette-item-icon,.command-palette-item:hover .command-palette-item-label,.command-palette-item[aria-selected=true] .command-palette-item-icon,.command-palette-item[aria-selected=true] .command-palette-item-label{color:white}.command-palette-item:hover .command-palette-item-shortcut kbd,.command-palette-item[aria-selected=true] .command-palette-item-shortcut kbd{background:rgba(255,255,255,.2);border-color:rgba(255,255,255,.3);color:white}.command-palette-item-left{display:flex;align-items:center;gap:12px}.command-palette-item-icon{width:18px;height:18px;color:#6b7280;flex-shrink:0;transition:color .15s ease}.command-palette-item-label{font-size:14px;font-weight:500;color:#111827;transition:color .15s ease}.command-palette-item-shortcut{display:flex;gap:4px}.command-palette-item-shortcut kbd{padding:2px 6px;background:#f3f4f6;border-radius:4px;font-size:11px;font-weight:600;color:#6b7280;border:1px solid #e5e7eb;transition:all .15s ease}.command-palette-empty{padding:32px;text-align:center;color:#9ca3af;font-size:14px}.command-palette-footer{border-top:1px solid #e5e7eb;padding:12px 16px;background:#f9fafb}.command-palette-footer-hints{display:flex;gap:16px;justify-content:center;font-size:12px;color:#6b7280}.command-palette-footer-hints span{display:flex;align-items:center;gap:6px}.command-palette-footer-hints kbd{padding:2px 6px;background:white;border-radius:4px;font-size:10px;font-weight:600;border:1px solid #e5e7eb}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideDown{0%{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}