/**
 * Command Palette Button
 * Visual button to open command palette
 */

.command-palette-btn {
    position: relative;
    inset: auto;
    width: 44px;
    height: 44px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.command-palette-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 243, 255, 0.2);
}

.command-palette-btn i {
    font-size: 24px;
    color: #00f3ff;
}

.command-palette-btn .cmd-hint {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.command-palette-btn:hover .cmd-hint {
    opacity: 1;
}

@media (max-width: 768px) {
    .command-palette-btn {
        top: 15px;
        right: 120px;
        width: 42px;
        height: 42px;
    }
}